mirror of
https://github.com/jeffvli/feishin.git
synced 2024-11-20 06:27:09 +01:00
83 lines
2.5 KiB
JavaScript
83 lines
2.5 KiB
JavaScript
module.exports = {
|
|
extends: ['erb', 'plugin:typescript-sort-keys/recommended'],
|
|
ignorePatterns: ['.erb/*', 'server'],
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
createDefaultProgram: true,
|
|
ecmaVersion: 2020,
|
|
project: './tsconfig.json',
|
|
sourceType: 'module',
|
|
tsconfigRootDir: __dirname,
|
|
},
|
|
plugins: ['@typescript-eslint', 'import', 'sort-keys-fix'],
|
|
root: true,
|
|
rules: {
|
|
'@typescript-eslint/naming-convention': 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
'@typescript-eslint/no-shadow': ['off'],
|
|
'import/extensions': 'off',
|
|
// A temporary hack related to IDE not resolving correct package.json
|
|
'import/no-extraneous-dependencies': 'off',
|
|
'import/no-unresolved': 'error',
|
|
'import/order': [
|
|
'error',
|
|
{
|
|
alphabetize: {
|
|
caseInsensitive: true,
|
|
order: 'asc',
|
|
},
|
|
groups: ['builtin', 'external', 'internal', ['parent', 'sibling']],
|
|
'newlines-between': 'never',
|
|
pathGroups: [
|
|
{
|
|
group: 'external',
|
|
pattern: 'react',
|
|
position: 'before',
|
|
},
|
|
],
|
|
pathGroupsExcludedImportTypes: ['react'],
|
|
},
|
|
],
|
|
'import/prefer-default-export': 'off',
|
|
'jsx-a11y/click-events-have-key-events': 'off',
|
|
'jsx-a11y/interactive-supports-focus': 'off',
|
|
'jsx-a11y/media-has-caption': 'off',
|
|
'no-await-in-loop': 'off',
|
|
'no-console': 'off',
|
|
'no-nested-ternary': 'off',
|
|
'no-restricted-syntax': 'off',
|
|
'no-underscore-dangle': 'off',
|
|
'react/jsx-props-no-spreading': 'off',
|
|
'react/jsx-sort-props': [
|
|
'error',
|
|
{
|
|
callbacksLast: true,
|
|
ignoreCase: false,
|
|
noSortAlphabetically: false,
|
|
reservedFirst: true,
|
|
shorthandFirst: true,
|
|
shorthandLast: false,
|
|
},
|
|
],
|
|
// Since React 17 and typescript 4.1 you can safely disable the rule
|
|
'react/react-in-jsx-scope': 'off',
|
|
'sort-keys-fix/sort-keys-fix': 'warn',
|
|
},
|
|
settings: {
|
|
'import/parsers': {
|
|
'@typescript-eslint/parser': ['.ts', '.tsx'],
|
|
},
|
|
'import/resolver': {
|
|
// See https://github.com/benmosher/eslint-plugin-import/issues/1396#issuecomment-575727774 for line below
|
|
node: {
|
|
extensions: ['.js', '.jsx', '.ts', '.tsx'],
|
|
},
|
|
typescript: {},
|
|
webpack: {
|
|
config: require.resolve('./.erb/configs/webpack.config.eslint.ts'),
|
|
},
|
|
},
|
|
},
|
|
};
|