mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
import globals from 'globals';
|
|
import pluginJs from '@eslint/js';
|
|
import tseslint from 'typescript-eslint';
|
|
import pluginReactConfig from 'eslint-plugin-react/configs/recommended.js';
|
|
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended';
|
|
|
|
export default [
|
|
{languageOptions: {globals: globals.browser}},
|
|
pluginJs.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
{
|
|
rules: {
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/ban-types': 'off',
|
|
'@typescript-eslint/no-var-requires': 'off'
|
|
}
|
|
},
|
|
{
|
|
settings: {
|
|
react: {
|
|
version: 'detect'
|
|
}
|
|
},
|
|
...pluginReactConfig,
|
|
rules: {
|
|
'react/display-name': 'off',
|
|
'react/no-string-refs': 'off',
|
|
'react/jsx-no-useless-fragment': ['error', {allowExpressions: true}]
|
|
}
|
|
},
|
|
eslintPluginPrettierRecommended,
|
|
{
|
|
files: ['./src/**/*.{ts,tsx}']
|
|
},
|
|
{
|
|
ignores: ['dist', 'assets', '**/*.config.js', '__mocks__', 'coverage', '**/*.test.{ts,tsx}']
|
|
}
|
|
];
|