@@ -64,80 +64,38 @@ export default [
6464 properties : 'never' ,
6565 ignoreGlobals : true ,
6666 } ] ,
67- 'constructor-super' : 'error' ,
6867 curly : [ 'error' , 'multi-line' ] ,
6968 'default-case-last' : 'error' ,
7069 eqeqeq : [ 'error' , 'always' , { null : 'ignore' } ] ,
7170 'new-cap' : [ 'error' , { newIsCap : true , capIsNew : false , properties : true } ] ,
7271 'no-array-constructor' : 'error' ,
73- 'no-async-promise-executor' : 'error' ,
7472 'no-caller' : 'error' ,
75- 'no-case-declarations' : 'error' ,
76- 'no-class-assign' : 'error' ,
77- 'no-compare-neg-zero' : 'error' ,
78- 'no-cond-assign' : 'error' ,
79- 'no-const-assign' : 'error' ,
8073 'no-constant-condition' : [ 'error' , { checkLoops : false } ] ,
81- 'no-control-regex' : 'error' ,
82- 'no-debugger' : 'error' ,
83- 'no-delete-var' : 'error' ,
84- 'no-dupe-args' : 'error' ,
85- 'no-dupe-class-members' : 'error' ,
86- 'no-dupe-keys' : 'error' ,
87- 'no-duplicate-case' : 'error' ,
88- 'no-useless-backreference' : 'error' ,
8974 'no-empty' : [ 'error' , { allowEmptyCatch : true } ] ,
90- 'no-empty-character-class' : 'error' ,
91- 'no-empty-pattern' : 'error' ,
9275 'no-eval' : 'error' ,
93- 'no-ex-assign' : 'error' ,
9476 'no-extend-native' : 'error' ,
9577 'no-extra-bind' : 'error' ,
96- 'no-extra-boolean-cast' : 'error' ,
97- 'no-fallthrough' : 'error' ,
98- 'no-func-assign' : 'error' ,
99- 'no-global-assign' : 'error' ,
10078 'no-implied-eval' : 'error' ,
101- 'no-import-assign' : 'error' ,
102- 'no-invalid-regexp' : 'error' ,
103- 'no-irregular-whitespace' : 'error' ,
10479 'no-iterator' : 'error' ,
10580 'no-labels' : [ 'error' , { allowLoop : false , allowSwitch : false } ] ,
10681 'no-lone-blocks' : 'error' ,
107- 'no-loss-of-precision' : 'error' ,
108- 'no-misleading-character-class' : 'error' ,
109- 'no-prototype-builtins' : 'error' ,
110- 'no-useless-catch' : 'error' ,
11182 'no-multi-str' : 'error' ,
11283 'no-new' : 'error' ,
11384 'no-new-func' : 'error' ,
11485 'no-object-constructor' : 'error' ,
115- 'no-new-native-nonconstructor' : 'error' ,
11686 'no-new-wrappers' : 'error' ,
117- 'no-obj-calls' : 'error' ,
118- 'no-octal' : 'error' ,
11987 'no-octal-escape' : 'error' ,
12088 'no-proto' : 'error' ,
12189 'no-redeclare' : [ 'error' , { builtinGlobals : false } ] ,
122- 'no-regex-spaces' : 'error' ,
12390 'no-return-assign' : [ 'error' , 'except-parens' ] ,
124- 'no-self-assign' : [ 'error' , { props : true } ] ,
12591 'no-self-compare' : 'error' ,
12692 'no-sequences' : 'error' ,
127- 'no-shadow-restricted-names' : 'error' ,
128- 'no-sparse-arrays' : 'error' ,
12993 'no-template-curly-in-string' : 'error' ,
130- 'no-this-before-super' : 'error' ,
13194 'no-throw-literal' : 'error' ,
132- 'no-undef' : 'error' ,
13395 'no-undef-init' : 'error' ,
134- 'no-unexpected-multiline' : 'error' ,
13596 'no-unmodified-loop-condition' : 'error' ,
13697 'no-unneeded-ternary' : [ 'error' , { defaultAssignment : false } ] ,
137- 'no-unreachable' : 'error' ,
13898 'no-unreachable-loop' : 'error' ,
139- 'no-unsafe-finally' : 'error' ,
140- 'no-unsafe-negation' : 'error' ,
14199 'no-unused-expressions' : [ 'error' , {
142100 allowShortCircuit : true ,
143101 allowTernary : true ,
@@ -153,11 +111,9 @@ export default [
153111 'no-useless-call' : 'error' ,
154112 'no-useless-computed-key' : 'error' ,
155113 'no-useless-constructor' : 'error' ,
156- 'no-useless-escape' : 'error' ,
157114 'no-useless-rename' : 'error' ,
158115 'no-useless-return' : 'error' ,
159116 'no-void' : 'error' ,
160- 'no-with' : 'error' ,
161117 'one-var' : [ 'error' , { initialized : 'never' } ] ,
162118 'prefer-const' : [ 'error' , { destructuring : 'all' } ] ,
163119 'prefer-promise-reject-errors' : 'error' ,
0 commit comments