File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 11import type { Linter } from 'eslint' ;
2- import importPlugin from 'eslint-plugin-import' ;
32import jsdoc from 'eslint-plugin-jsdoc' ;
43import tseslint from 'typescript-eslint' ;
54
@@ -14,7 +13,6 @@ import { baseConfig } from './base';
1413export const tsConfig : Config = [
1514 ...baseConfig ,
1615 ...tseslint . configs . strictTypeChecked ,
17- importPlugin . flatConfigs . typescript ,
1816 jsdoc . configs [ 'flat/recommended' ] as Linter . Config ,
1917 {
2018 name : 'bosh/typescript' ,
@@ -33,8 +31,10 @@ export const tsConfig: Config = [
3331 '@typescript-eslint/consistent-type-imports' : 'error' ,
3432 '@typescript-eslint/no-unsafe-member-access' : 'off' ,
3533 '@typescript-eslint/no-unsafe-assignment' : 'off' ,
36- // JSDoc rules
37- 'jsdoc/require-jsdoc' : 'off'
34+
35+ // Base ESLint rules overridden by typescript-eslint
36+ 'no-undef' : 'off' ,
37+ 'no-unused-vars' : 'off'
3838 }
3939 }
4040] ;
You can’t perform that action at this time.
0 commit comments