mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-23 06:40:50 +01:00
139 lines
4.3 KiB
JavaScript
139 lines
4.3 KiB
JavaScript
import typescriptEslintPlugin from "@typescript-eslint/eslint-plugin";
|
|
import typescriptEslintParser from "@typescript-eslint/parser";
|
|
import reactPlugin from "eslint-plugin-react";
|
|
import reactHooksPlugin from "eslint-plugin-react-hooks";
|
|
import path from "path";
|
|
import { fileURLToPath } from "url";
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
|
|
export default [
|
|
{
|
|
files: ["**/*.jsx", "**/*.js", "**/*.tsx", "**/*.ts"],
|
|
plugins: {
|
|
react: reactPlugin,
|
|
"react-hooks": reactHooksPlugin,
|
|
"@typescript-eslint": typescriptEslintPlugin,
|
|
},
|
|
languageOptions: {
|
|
parser: typescriptEslintParser,
|
|
ecmaVersion: "latest",
|
|
parserOptions: {
|
|
sourceType: "module",
|
|
project: "./tsconfig.json",
|
|
tsconfigRootDir: __dirname,
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
},
|
|
},
|
|
},
|
|
rules: {
|
|
...reactPlugin.configs.recommended.rules,
|
|
...reactHooksPlugin.configs.recommended.rules,
|
|
...typescriptEslintPlugin.configs.recommended.rules,
|
|
...typescriptEslintPlugin.configs[
|
|
"recommended-requiring-type-checking"
|
|
].rules,
|
|
'indent': [
|
|
'error',
|
|
4,
|
|
{
|
|
'SwitchCase': 1
|
|
}
|
|
],
|
|
'no-multi-spaces': [
|
|
'error'
|
|
],
|
|
'no-trailing-spaces': [
|
|
'error',
|
|
{
|
|
'skipBlankLines': false,
|
|
'ignoreComments': true
|
|
}
|
|
],
|
|
'linebreak-style': [
|
|
'off'
|
|
],
|
|
'quotes': [
|
|
'error',
|
|
'single'
|
|
],
|
|
'semi': [
|
|
'error',
|
|
'always'
|
|
],
|
|
'brace-style': [
|
|
'error',
|
|
'allman'
|
|
],
|
|
'object-curly-spacing': [
|
|
'error',
|
|
'always'
|
|
],
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-unsafe-assignment': 'off',
|
|
'@typescript-eslint/no-unsafe-call': 'off',
|
|
'@typescript-eslint/no-unsafe-member-access': 'off',
|
|
'@typescript-eslint/no-floating-promises': 'off',
|
|
'@typescript-eslint/require-await': 'off',
|
|
'@typescript-eslint/no-unsafe-argument': 'off',
|
|
'@typescript-eslint/no-unsafe-return': 'off',
|
|
'@typescript-eslint/no-misused-promises': 'off',
|
|
'@typescript-eslint/explicit-module-boundary-types': [
|
|
'off',
|
|
{
|
|
'allowedNames': [
|
|
'getMessageArray'
|
|
]
|
|
}
|
|
],
|
|
'@typescript-eslint/unbound-method': [
|
|
'off'
|
|
],
|
|
'@typescript-eslint/ban-ts-comment': [
|
|
'off'
|
|
],
|
|
'@typescript-eslint/no-empty-function': [
|
|
'error',
|
|
{
|
|
'allow': [
|
|
'functions',
|
|
'arrowFunctions',
|
|
'generatorFunctions',
|
|
'methods',
|
|
'generatorMethods',
|
|
'constructors'
|
|
]
|
|
}
|
|
],
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'off'
|
|
],
|
|
'@typescript-eslint/ban-types': [
|
|
'error',
|
|
{
|
|
'types':
|
|
{
|
|
'String': true,
|
|
'Boolean': true,
|
|
'Number': true,
|
|
'Symbol': true,
|
|
'{}': false,
|
|
'Object': false,
|
|
'object': false,
|
|
'Function': false
|
|
},
|
|
'extendDefaults': true
|
|
}
|
|
],
|
|
'react/react-in-jsx-scope': 'off'
|
|
},
|
|
settings: {
|
|
react: {
|
|
version: "18.3.1",
|
|
},
|
|
},
|
|
},
|
|
];
|