mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-20 06:28:14 -04:00
* Hide notice on overview and - Removed prettier/recommended from eslint - Optimized imports * move overview check to parent * don't show recents if there is none * use useMatch
53 lines
1.4 KiB
JavaScript
53 lines
1.4 KiB
JavaScript
const path = require('node:path');
|
|
module.exports = {
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
ecmaFeatures: {
|
|
jsx: true
|
|
},
|
|
ecmaVersion: 12,
|
|
sourceType: 'module'
|
|
},
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:react/recommended',
|
|
'plugin:react-hooks/recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'turbo',
|
|
'plugin:editorconfig/all',
|
|
'prettier'
|
|
],
|
|
plugins: ['react', 'editorconfig'],
|
|
rules: {
|
|
'react/display-name': 'off',
|
|
'react/prop-types': 'off',
|
|
'react/no-unescaped-entities': 'off',
|
|
'react/react-in-jsx-scope': 'off',
|
|
'react-hooks/rules-of-hooks': 'warn',
|
|
'react-hooks/exhaustive-deps': 'warn',
|
|
'@typescript-eslint/no-unused-vars': 'off',
|
|
'@typescript-eslint/ban-ts-comment': 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-var-requires': 'off',
|
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
|
'@typescript-eslint/no-empty-interface': 'off',
|
|
'@typescript-eslint/no-empty-function': 'off',
|
|
'no-control-regex': 'off',
|
|
'no-mixed-spaces-and-tabs': ['warn', 'smart-tabs'],
|
|
'editorconfig/indent': 'off',
|
|
'turbo/no-undeclared-env-vars': [
|
|
'error',
|
|
{
|
|
cwd: path.resolve(path.join(__dirname, '..', '..', '..'))
|
|
}
|
|
]
|
|
},
|
|
ignorePatterns: ['dist', '**/*.js', '**/*.json', 'node_modules'],
|
|
settings: {
|
|
react: {
|
|
version: 'detect'
|
|
}
|
|
}
|
|
};
|