Some checks failed
Test / test (macos-latest) (push) Has been cancelled
Test / test (ubuntu-latest) (push) Has been cancelled
Test / test (windows-latest) (push) Has been cancelled
Publish / publish (macos-latest) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
module.exports = {
|
|
extends: 'erb',
|
|
plugins: ['@typescript-eslint'],
|
|
rules: {
|
|
// A temporary hack related to IDE not resolving correct package.json
|
|
'import/no-extraneous-dependencies': 'off',
|
|
'react/react-in-jsx-scope': 'off',
|
|
'react/jsx-filename-extension': 'off',
|
|
'import/extensions': 'off',
|
|
'import/no-unresolved': 'off',
|
|
'import/no-import-module-exports': 'off',
|
|
'no-shadow': 'off',
|
|
'@typescript-eslint/no-shadow': 'error',
|
|
'no-unused-vars': 'off',
|
|
'@typescript-eslint/no-unused-vars': 'error',
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 2022,
|
|
sourceType: 'module',
|
|
},
|
|
settings: {
|
|
'import/resolver': {
|
|
// See https://github.com/benmosher/eslint-plugin-import/issues/1396#issuecomment-575727774 for line below
|
|
node: {
|
|
extensions: ['.js', '.jsx', '.ts', '.tsx'],
|
|
moduleDirectory: ['node_modules', 'src/'],
|
|
},
|
|
webpack: {
|
|
config: require.resolve('./.erb/configs/webpack.config.eslint.ts'),
|
|
},
|
|
typescript: {},
|
|
},
|
|
'import/parsers': {
|
|
'@typescript-eslint/parser': ['.ts', '.tsx'],
|
|
},
|
|
},
|
|
};
|