File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
packages/eslint-config-typescript Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,8 @@ export default [
3434 */
3535
3636 '@typescript-eslint/explicit-module-boundary-types' : 'error' ,
37+ 'no-with' : 'error' ,
38+ 'no-class-assign' : 'error' ,
3739
3840 /*
3941 [strict-null-checks]
Original file line number Diff line number Diff line change @@ -21,6 +21,13 @@ export default [
2121 '@typescript-eslint/no-redundant-type-constituents' : 'off' ,
2222 '@typescript-eslint/no-unsafe-declaration-merging' : 'off' ,
2323 '@typescript-eslint/no-unsafe-enum-comparison' : 'off' ,
24+ '@typescript-eslint/prefer-find' : 'off' ,
25+ 'prefer-promise-reject-errors' : [ 'error' , { allowEmptyReject : true } ] ,
26+ '@typescript-eslint/prefer-promise-reject-errors' : 'off' ,
27+ '@typescript-eslint/no-unsafe-unary-minus' : 'off' ,
28+ '@typescript-eslint/no-array-delete' : 'off' ,
29+ 'no-with' : 'error' ,
30+ 'no-class-assign' : 'error' ,
2431
2532 /*
2633 This rule can be confusing if you're not familiar with JavaScript's rules for binding `this`,
You can’t perform that action at this time.
0 commit comments