mirror of
https://github.com/A6-9V/MQL5-Google-Onedrive.git
synced 2026-04-11 04:00:56 +00:00
82 lines
2.4 KiB
JavaScript
82 lines
2.4 KiB
JavaScript
// @ts-check
|
|
import { FlatCompat } from '@eslint/eslintrc';
|
|
import js from '@eslint/js';
|
|
import perfectionist from 'eslint-plugin-perfectionist';
|
|
|
|
const compat = new FlatCompat({
|
|
baseDirectory: import.meta.dirname,
|
|
recommendedConfig: js.configs.recommended,
|
|
});
|
|
|
|
const eslintConfig = [
|
|
...compat.config({
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:react/recommended',
|
|
'plugin:react/jsx-runtime',
|
|
'plugin:react-hooks/recommended',
|
|
'prettier',
|
|
],
|
|
settings: {
|
|
react: {
|
|
version: 'detect',
|
|
},
|
|
},
|
|
}),
|
|
{
|
|
rules: {
|
|
'@typescript-eslint/no-explicit-any': 'warn',
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'error',
|
|
{
|
|
argsIgnorePattern: '^_',
|
|
varsIgnorePattern: '^_',
|
|
},
|
|
],
|
|
curly: ['error', 'all'],
|
|
'no-fallthrough': 'off',
|
|
'padding-line-between-statements': [
|
|
'error',
|
|
{
|
|
blankLine: 'always',
|
|
next: 'return',
|
|
prev: '*',
|
|
},
|
|
{
|
|
blankLine: 'always',
|
|
next: 'block-like',
|
|
prev: '*',
|
|
},
|
|
{
|
|
blankLine: 'any',
|
|
next: 'block-like',
|
|
prev: 'case',
|
|
},
|
|
{
|
|
blankLine: 'always',
|
|
next: '*',
|
|
prev: 'block-like',
|
|
},
|
|
{
|
|
blankLine: 'always',
|
|
next: 'block-like',
|
|
prev: 'block-like',
|
|
},
|
|
{
|
|
blankLine: 'any',
|
|
next: 'while',
|
|
prev: 'do',
|
|
},
|
|
],
|
|
'react/no-unescaped-entities': 'off', // Allow quotes in JSX
|
|
'react/prop-types': 'off', // TypeScript provides type checking
|
|
},
|
|
},
|
|
perfectionist.configs['recommended-natural'],
|
|
{
|
|
ignores: ['node_modules/**', 'dist/**', 'build/**', 'public/mockServiceWorker.js', 'src/graphql/types.ts'],
|
|
},
|
|
];
|
|
|
|
export default eslintConfig;
|