Skip to content

Commit a8a596a

Browse files
fix test
1 parent 104995a commit a8a596a

File tree

1 file changed

+65
-65
lines changed

1 file changed

+65
-65
lines changed
Lines changed: 65 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,67 @@
11
export default [
2-
{
3-
rules: {
4-
"constructor-super": ["error"],
5-
"for-direction": ["error"],
6-
"getter-return": ["error", {"allowImplicit": false}],
7-
"no-async-promise-executor": ["error"],
8-
"no-case-declarations": ["error"],
9-
"no-class-assign": ["error"],
10-
"no-compare-neg-zero": ["error"],
11-
"no-cond-assign": ["error", "except-parens"],
12-
"no-const-assign": ["error"],
13-
"no-constant-condition": ["error", {"checkLoops": true}],
14-
"no-control-regex": ["error"],
15-
"no-debugger": ["error"],
16-
"no-delete-var": ["error"],
17-
"no-dupe-args": ["error"],
18-
"no-dupe-class-members": ["error"],
19-
"no-dupe-else-if": ["error"],
20-
"no-dupe-keys": ["error"],
21-
"no-duplicate-case": ["error"],
22-
"no-empty": ["error", {"allowEmptyCatch": false}],
23-
"no-empty-character-class": ["error"],
24-
"no-empty-pattern": ["error", {"allowObjectPatternsAsParameters": false}],
25-
"no-ex-assign": ["error"],
26-
"no-extra-boolean-cast": ["error", {"enforceForLogicalOperands": false}],
27-
"no-extra-semi": ["error"],
28-
"no-fallthrough": ["error", {"allowEmptyCase": false}],
29-
"no-func-assign": ["error"],
30-
"no-global-assign": ["error"],
31-
"no-import-assign": ["error"],
32-
"no-inner-declarations": ["error", "functions"],
33-
"no-invalid-regexp": ["error"],
34-
"no-irregular-whitespace": ["error", {"skipComments": false, "skipJSXText": false, "skipRegExps": false, "skipStrings": true, "skipTemplates": false}],
35-
"no-loss-of-precision": ["error"],
36-
"no-misleading-character-class": ["error"],
37-
"no-mixed-spaces-and-tabs": ["error"],
38-
"no-new-symbol": ["error"],
39-
"no-nonoctal-decimal-escape": ["error"],
40-
"no-obj-calls": ["error"],
41-
"no-octal": ["error"],
42-
"no-prototype-builtins": ["error"],
43-
"no-redeclare": ["error", {"builtinGlobals": true}],
44-
"no-regex-spaces": ["error"],
45-
"no-self-assign": ["error", {"props": true}],
46-
"no-setter-return": ["error"],
47-
"no-shadow-restricted-names": ["error"],
48-
"no-sparse-arrays": ["error"],
49-
"no-this-before-super": ["error"],
50-
"no-undef": ["error", {"typeof": false}],
51-
"no-unexpected-multiline": ["error"],
52-
"no-unreachable": ["error"],
53-
"no-unsafe-finally": ["error"],
54-
"no-unsafe-negation": ["error", {"enforceForOrderingRelations": false}],
55-
"no-unsafe-optional-chaining": ["error", {"disallowArithmeticOperators": false}],
56-
"no-unused-labels": ["error"],
57-
"no-unused-vars": ["error"],
58-
"no-useless-backreference": ["error"],
59-
"no-useless-catch": ["error"],
60-
"no-useless-escape": ["error"],
61-
"no-with": ["error"],
62-
"require-yield": ["error"],
63-
"use-isnan": ["error", {"enforceForIndexOf": false, "enforceForSwitchCase": true}],
64-
"valid-typeof": ["error", {"requireStringLiterals": false}],
65-
}
66-
}
2+
{
3+
rules: {
4+
"constructor-super": ["error"],
5+
"for-direction": ["error"],
6+
"getter-return": ["error", {"allowImplicit": false}],
7+
"no-async-promise-executor": ["error"],
8+
"no-case-declarations": ["error"],
9+
"no-class-assign": ["error"],
10+
"no-compare-neg-zero": ["error"],
11+
"no-cond-assign": ["error", "except-parens"],
12+
"no-constant-condition": ["error", {"checkLoops": true}],
13+
"no-const-assign": ["error"],
14+
"no-control-regex": ["error"],
15+
"no-debugger": ["error"],
16+
"no-delete-var": ["error"],
17+
"no-dupe-args": ["error"],
18+
"no-dupe-class-members": ["error"],
19+
"no-dupe-else-if": ["error"],
20+
"no-dupe-keys": ["error"],
21+
"no-duplicate-case": ["error"],
22+
"no-empty": ["error", {"allowEmptyCatch": false}],
23+
"no-empty-character-class": ["error"],
24+
"no-empty-pattern": ["error", {"allowObjectPatternsAsParameters": false}],
25+
"no-ex-assign": ["error"],
26+
"no-extra-boolean-cast": ["error", {"enforceForLogicalOperands": false}],
27+
"no-extra-semi": ["error"],
28+
"no-fallthrough": ["error", {"allowEmptyCase": false}],
29+
"no-func-assign": ["error"],
30+
"no-global-assign": ["error"],
31+
"no-import-assign": ["error"],
32+
"no-inner-declarations": ["error", "functions"],
33+
"no-invalid-regexp": ["error"],
34+
"no-irregular-whitespace": ["error", {"skipComments": false, "skipJSXText": false, "skipRegExps": false, "skipStrings": true, "skipTemplates": false}],
35+
"no-loss-of-precision": ["error"],
36+
"no-misleading-character-class": ["error"],
37+
"no-mixed-spaces-and-tabs": ["error"],
38+
"no-new-symbol": ["error"],
39+
"no-nonoctal-decimal-escape": ["error"],
40+
"no-obj-calls": ["error"],
41+
"no-octal": ["error"],
42+
"no-prototype-builtins": ["error"],
43+
"no-redeclare": ["error", {"builtinGlobals": true}],
44+
"no-regex-spaces": ["error"],
45+
"no-self-assign": ["error", {"props": true}],
46+
"no-setter-return": ["error"],
47+
"no-shadow-restricted-names": ["error"],
48+
"no-sparse-arrays": ["error"],
49+
"no-this-before-super": ["error"],
50+
"no-undef": ["error", {"typeof": false}],
51+
"no-unexpected-multiline": ["error"],
52+
"no-unreachable": ["error"],
53+
"no-unsafe-finally": ["error"],
54+
"no-unsafe-negation": ["error", {"enforceForOrderingRelations": false}],
55+
"no-unsafe-optional-chaining": ["error", {"disallowArithmeticOperators": false}],
56+
"no-unused-labels": ["error"],
57+
"no-unused-vars": ["error"],
58+
"no-useless-backreference": ["error"],
59+
"no-useless-catch": ["error"],
60+
"no-useless-escape": ["error"],
61+
"no-with": ["error"],
62+
"require-yield": ["error"],
63+
"use-isnan": ["error", {"enforceForIndexOf": false, "enforceForSwitchCase": true}],
64+
"valid-typeof": ["error", {"requireStringLiterals": false}],
65+
}
66+
}
6767
];

0 commit comments

Comments
 (0)