module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: __dirname,
sourceType: 'module',
createDefaultProgram: true
},
ignorePatterns: [
'.eslintrc.cjs',
'dist',
'node_modules',
'tests',
'examples',
'scripts',
'bin',
'test-scripts',
'**/*.d.ts',
'src/fixed-server.ts',
'src/fixed-server-deploy.ts',
'src/run-fixed-server.ts'
],
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/recommended',
],
root: true,
env: {
node: true,
},
rules: {
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unused-vars': ['warn', {
argsIgnorePattern: '^_',
varsIgnorePattern: '^_'
}],
// Temporarily disable strict TypeScript errors
'@typescript-eslint/no-var-requires': 'warn',
'@typescript-eslint/ban-ts-comment': 'warn',
'@typescript-eslint/ban-types': 'warn',
'@typescript-eslint/no-non-null-assertion': 'off',
},
};