Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pdehaan/eslint-recommended
Checks enabled eslint:recommended rules.
https://github.com/pdehaan/eslint-recommended
eslint
Last synced: 5 days ago
JSON representation
Checks enabled eslint:recommended rules.
- Host: GitHub
- URL: https://github.com/pdehaan/eslint-recommended
- Owner: pdehaan
- License: mpl-2.0
- Created: 2018-12-03T16:59:43.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-03T17:37:28.000Z (about 6 years ago)
- Last Synced: 2024-12-19T15:07:04.540Z (15 days ago)
- Topics: eslint
- Language: JavaScript
- Size: 7.81 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-recommended
Checks enabled [**eslint:recommended**](https://github.com/eslint/eslint/blob/master/conf/eslint-recommended.js) rules and returns a map of rules which are warnings or errors.
## Usage:
```sh
$ npx pdehaan/eslint-recommendedChecking [email protected]...
Map {
'constructor-super' => 'error',
'for-direction' => 'error',
'getter-return' => 'error',
'no-case-declarations' => 'error',
'no-class-assign' => 'error',
'no-compare-neg-zero' => 'error',
'no-cond-assign' => 'error',
'no-console' => 'error',
'no-const-assign' => 'error',
'no-constant-condition' => 'error',
'no-control-regex' => 'error',
'no-debugger' => 'error',
'no-delete-var' => 'error',
'no-dupe-args' => 'error',
'no-dupe-class-members' => 'error',
'no-dupe-keys' => 'error',
'no-duplicate-case' => 'error',
'no-empty' => 'error',
'no-empty-character-class' => 'error',
'no-empty-pattern' => 'error',
'no-ex-assign' => 'error',
'no-extra-boolean-cast' => 'error',
'no-extra-semi' => 'error',
'no-fallthrough' => 'error',
'no-func-assign' => 'error',
'no-global-assign' => 'error',
'no-inner-declarations' => 'error',
'no-invalid-regexp' => 'error',
'no-irregular-whitespace' => 'error',
'no-mixed-spaces-and-tabs' => 'error',
'no-new-symbol' => 'error',
'no-obj-calls' => 'error',
'no-octal' => 'error',
'no-redeclare' => 'error',
'no-regex-spaces' => 'error',
'no-self-assign' => 'error',
'no-sparse-arrays' => 'error',
'no-this-before-super' => 'error',
'no-undef' => 'error',
'no-unexpected-multiline' => 'error',
'no-unreachable' => 'error',
'no-unsafe-finally' => 'error',
'no-unsafe-negation' => 'error',
'no-unused-labels' => 'error',
'no-unused-vars' => 'error',
'no-useless-escape' => 'error',
'require-yield' => 'error',
'use-isnan' => 'error',
'valid-typeof' => 'error' }
```