Actively maintained fork of eslint-config-standard: ESLint Config for JavaScript Standard Style
- The ESLint config of JavaScript Standard Style
- Usage
- Learn more
- Sponsors and Backers
- Changelog
- License
The ESLint config of JavaScript Standard Style
This module is for advanced users. You probably want to use standard instead :)
This package exports a flat ESLint configuration on the main @eslinter/eslint-config-standard entry, and also exports a legacy ESLintrc configuration on the @eslinter/eslint-config-standard/legacy entry.
# npm
npm install -D eslint @eslinter/eslint-config-standard
# yarn
yarn add -D eslint @eslinter/eslint-config-standard
# pnpm
pnpm add -D eslint @eslinter/eslint-config-standard
# bun
bun add -D eslint @eslinter/eslint-config-standardExample eslint.config.js:
import standard from '@eslinter/eslint-config-standard'
export default [
standard,
{
// your overrides here
},
]Example .eslintrc.json:
For the full listing of rules, editor plugins, FAQs, and more, visit the main JavaScript Standard Style repo.
| 1stG | RxTS | UnTS |
|---|---|---|
| 1stG | RxTS | UnTS |
|---|---|---|
Detailed changes for each release are documented in CHANGELOG.md.
{ "extends": "@eslinter/eslint-config-standard/legacy", "overrides": [ { // your overrides here }, ], }