1 | {
|
---|
2 | "rules": {
|
---|
3 | "generator-star": ["generator-star-spacing"],
|
---|
4 | "global-strict": ["strict"],
|
---|
5 | "no-arrow-condition": ["no-confusing-arrow", "no-constant-condition"],
|
---|
6 | "no-comma-dangle": ["comma-dangle"],
|
---|
7 | "no-empty-class": ["no-empty-character-class"],
|
---|
8 | "no-empty-label": ["no-labels"],
|
---|
9 | "no-extra-strict": ["strict"],
|
---|
10 | "no-reserved-keys": ["quote-props"],
|
---|
11 | "no-space-before-semi": ["semi-spacing"],
|
---|
12 | "no-wrap-func": ["no-extra-parens"],
|
---|
13 | "space-after-function-name": ["space-before-function-paren"],
|
---|
14 | "space-after-keywords": ["keyword-spacing"],
|
---|
15 | "space-before-function-parentheses": ["space-before-function-paren"],
|
---|
16 | "space-before-keywords": ["keyword-spacing"],
|
---|
17 | "space-in-brackets": ["object-curly-spacing", "array-bracket-spacing", "computed-property-spacing"],
|
---|
18 | "space-return-throw-case": ["keyword-spacing"],
|
---|
19 | "space-unary-word-ops": ["space-unary-ops"],
|
---|
20 | "spaced-line-comment": ["spaced-comment"]
|
---|
21 | }
|
---|
22 | }
|
---|