38 lines
1.1 KiB
JavaScript
38 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": false,
|
||
|
"memberSyntaxSortOrder": ["none", "all", "multiple", "single"],
|
||
|
"allowSeparatedGroups": true
|
||
|
}],
|
||
|
semi: ["error", "never"],
|
||
|
'@stylistic/indent': ['error', 2],
|
||
|
},
|
||
|
}
|
||
|
]
|