File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -12,19 +12,15 @@ export default [{
12
12
} ,
13
13
14
14
rules : {
15
- "no-eval" : "warn " ,
16
- "no-implied-eval" : "warn " ,
15
+ "no-eval" : "error " ,
16
+ "no-implied-eval" : "error " ,
17
17
"no-new-func" : "warn" ,
18
- "no-script-url" : "warn " ,
18
+ "no-script-url" : "error " ,
19
19
"no-unsafe-finally" : "error" ,
20
20
"no-unsafe-negation" : "error" ,
21
21
"no-prototype-builtins" : "warn" ,
22
- "no-unmodified-loop-condition" : "error" ,
23
- "no-useless-concat" : "warn" ,
24
- "no-useless-escape" : "warn" ,
25
22
"no-with" : "warn" ,
26
23
"require-await" : "warn" ,
27
- "no-return-await" : "warn" ,
28
24
"eqeqeq" : [ "error" , "always" ] ,
29
25
} ,
30
26
} ] ;
Original file line number Diff line number Diff line change @@ -13,7 +13,10 @@ export default [{
13
13
14
14
rules : {
15
15
"no-console" : "warn" ,
16
- "no-undef" : "error" ,
16
+ "no-undef" : "warn" ,
17
+ "no-unmodified-loop-condition" : "warn" ,
18
+ "no-useless-concat" : "warn" ,
19
+ "no-useless-escape" : "warn" ,
17
20
"no-unused-vars" : [ "warn" , {
18
21
vars : "all" ,
19
22
args : "after-used" ,
You can’t perform that action at this time.
0 commit comments