40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
import globals from "globals";
|
|
import pluginJs from "@eslint/js";
|
|
import tseslint from "typescript-eslint";
|
|
import pluginReact from "eslint-plugin-react";
|
|
import stylistic from '@stylistic/eslint-plugin';
|
|
|
|
export default [
|
|
{ files: ["**/*.{js,mjs,cjs,ts,jsx,tsx}"] },
|
|
{ languageOptions: { globals: globals.browser } },
|
|
pluginJs.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
pluginReact.configs.flat.recommended,
|
|
{
|
|
plugins: {
|
|
'@stylistic': stylistic
|
|
},
|
|
"rules": {
|
|
"no-unused-vars": "off",
|
|
"@typescript-eslint/no-unused-vars": [
|
|
"warn", // or "error"
|
|
{
|
|
"argsIgnorePattern": "^_",
|
|
"varsIgnorePattern": "^_",
|
|
"caughtErrorsIgnorePattern": "^_"
|
|
}
|
|
],
|
|
"sort-imports": ["error", {
|
|
"ignoreCase": false,
|
|
"ignoreDeclarationSort": true,
|
|
"ignoreMemberSort": true,
|
|
"memberSyntaxSortOrder": ["none", "all", "multiple", "single"],
|
|
"allowSeparatedGroups": true
|
|
}],
|
|
semi: ["error", "always"],
|
|
'@stylistic/indent': ['error', 2],
|
|
'react/prop-types': 'off'
|
|
},
|
|
}
|
|
];
|