mirror of
https://github.com/remnawave/panel.git
synced 2026-04-23 16:23:14 +00:00
97 lines
3.2 KiB
JavaScript
97 lines
3.2 KiB
JavaScript
module.exports = {
|
|
env: { browser: true, es2020: true },
|
|
extends: [
|
|
'eslint:recommended',
|
|
'airbnb-base',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:react-hooks/recommended',
|
|
'plugin:storybook/recommended',
|
|
'plugin:perfectionist/recommended-natural-legacy',
|
|
'prettier'
|
|
],
|
|
ignorePatterns: ['dist', '.eslintrc.cjs', 'plop', 'plop/**', 'plopfile.js', '.stylelintrc.js'],
|
|
plugins: ['react-refresh', 'import'],
|
|
parser: '@typescript-eslint/parser',
|
|
settings: {
|
|
'import/parsers': {
|
|
'@typescript-eslint/parser': ['.ts', '.tsx']
|
|
},
|
|
'import/resolver': {
|
|
node: true,
|
|
typescript: {
|
|
project: '.'
|
|
}
|
|
}
|
|
},
|
|
|
|
rules: {
|
|
'perfectionist/sort-imports': [
|
|
'error',
|
|
{
|
|
type: 'line-length',
|
|
order: 'desc',
|
|
ignoreCase: true,
|
|
specialCharacters: 'keep',
|
|
internalPattern: ['^~/.+'],
|
|
tsconfigRootDir: '.',
|
|
partitionByComment: false,
|
|
partitionByNewLine: false,
|
|
newlinesBetween: 'always',
|
|
maxLineLength: undefined,
|
|
groups: [
|
|
'type',
|
|
['builtin', 'external'],
|
|
'internal-type',
|
|
'internal',
|
|
['parent-type', 'sibling-type', 'index-type'],
|
|
['parent', 'sibling', 'index'],
|
|
'object',
|
|
'unknown'
|
|
],
|
|
customGroups: { type: {}, value: {} },
|
|
environment: 'node'
|
|
}
|
|
],
|
|
'perfectionist/sort-objects': ['off'],
|
|
'perfectionist/sort-modules': ['off'],
|
|
indent: ['error', 4, { SwitchCase: 1 }],
|
|
'max-classes-per-file': 'off',
|
|
'import/no-extraneous-dependencies': ['off'],
|
|
'import/no-unresolved': ['error', { ignore: ['^@theme', '^@docusaurus', '^@site'] }],
|
|
'import/prefer-default-export': 'off',
|
|
'import/extensions': 'off',
|
|
'no-bitwise': 'off',
|
|
'no-plusplus': 'off',
|
|
'no-restricted-syntax': ['off', 'ForInStatement'],
|
|
'react-refresh/only-export-components': ['warn', { allowConstantExport: true }],
|
|
'no-shadow': ['off'],
|
|
'arrow-body-style': ['off'],
|
|
'object-curly-spacing': ['error', 'always'],
|
|
'array-bracket-spacing': ['error', 'never'],
|
|
'no-underscore-dangle': [
|
|
'off',
|
|
{
|
|
allow: ['_'],
|
|
allowAfterThis: true,
|
|
allowAfterSuper: true,
|
|
allowAfterThisConstructor: true,
|
|
enforceInMethodNames: false
|
|
}
|
|
],
|
|
semi: ['error', 'never'],
|
|
'comma-dangle': ['off'],
|
|
'brace-style': ['error', '1tbs', { allowSingleLine: true }],
|
|
'object-curly-newline': ['error', { multiline: true, consistent: true }],
|
|
'react-hooks/exhaustive-deps': 'off',
|
|
'no-empty-pattern': 'warn',
|
|
'@typescript-eslint/ban-types': [
|
|
'error',
|
|
{
|
|
types: {
|
|
'{}': false
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|