@@ -111,6 +111,7 @@ module.exports = {
111111 'sort-keys-fix' ,
112112 'sort-destructure-keys' ,
113113 '@typescript-eslint' ,
114+ 'unused-imports' ,
114115 ] ,
115116 'rules' : {
116117 '@dword-design/import-alias/prefer-alias' : [
@@ -129,12 +130,17 @@ module.exports = {
129130 '@typescript-eslint/no-explicit-any' : 'off' ,
130131 '@typescript-eslint/no-namespace' : 'off' ,
131132 '@typescript-eslint/no-var-requires' : 'off' ,
133+ '@typescript-eslint/no-unused-vars' : 'off' ,
132134 'default-case' : 'error' ,
133135 'dot-notation' : 'error' ,
136+ 'eqeqeq' : 'warn' ,
134137 'guard-for-in' : 'error' ,
135138 'no-caller' : 'error' ,
139+ 'no-console' : 'warn' ,
140+ 'no-debugger' : 'warn' ,
136141 'no-empty' : 'off' ,
137142 'no-empty-pattern' : 'off' ,
143+ 'no-unused-vars' : 'off' ,
138144 'no-var' : 'error' ,
139145 'object-curly-spacing' : [ 'error' , 'always' ] ,
140146 'prefer-template' : 'error' ,
@@ -157,6 +163,14 @@ module.exports = {
157163 'sort-destructure-keys/sort-destructure-keys' : 'warn' ,
158164 'sort-keys-fix/sort-keys-fix' : 'warn' ,
159165 'typescript-eslint/no-empty-interface' : 'off' ,
166+ 'unused-imports/no-unused-imports' : 'error' ,
167+ 'unused-imports/no-unused-vars' : [
168+ 'warn' ,
169+ {
170+ 'argsIgnorePattern' : '^_' ,
171+ 'varsIgnorePattern' : '^_' ,
172+ } ,
173+ ] ,
160174 } ,
161175 'settings' : {
162176 'react' : {
0 commit comments