forked from mysticatea/eslint-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support ESLint 8.x (mysticatea#37)
- Loading branch information
1 parent
4a989eb
commit 9d60baa
Showing
6 changed files
with
66 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"rules": { | ||
"generator-star": ["generator-star-spacing"], | ||
"global-strict": ["strict"], | ||
"no-arrow-condition": ["no-confusing-arrow", "no-constant-condition"], | ||
"no-comma-dangle": ["comma-dangle"], | ||
"no-empty-class": ["no-empty-character-class"], | ||
"no-empty-label": ["no-labels"], | ||
"no-extra-strict": ["strict"], | ||
"no-reserved-keys": ["quote-props"], | ||
"no-space-before-semi": ["semi-spacing"], | ||
"no-wrap-func": ["no-extra-parens"], | ||
"space-after-function-name": ["space-before-function-paren"], | ||
"space-after-keywords": ["keyword-spacing"], | ||
"space-before-function-parentheses": ["space-before-function-paren"], | ||
"space-before-keywords": ["keyword-spacing"], | ||
"space-in-brackets": [ | ||
"object-curly-spacing", | ||
"array-bracket-spacing", | ||
"computed-property-spacing" | ||
], | ||
"space-return-throw-case": ["keyword-spacing"], | ||
"space-unary-word-ops": ["space-unary-ops"], | ||
"spaced-line-comment": ["spaced-comment"] | ||
} | ||
} |