mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-16 13:01:14 +00:00
71 lines
1.8 KiB
JavaScript
71 lines
1.8 KiB
JavaScript
|
import typescriptEslint from "@typescript-eslint/eslint-plugin";
|
||
|
import _import from "eslint-plugin-import";
|
||
|
import { fixupPluginRules } from "@eslint/compat";
|
||
|
import globals from "globals";
|
||
|
import tsParser from "@typescript-eslint/parser";
|
||
|
import path from "node:path";
|
||
|
import { fileURLToPath } from "node:url";
|
||
|
import js from "@eslint/js";
|
||
|
import { FlatCompat } from "@eslint/eslintrc";
|
||
|
|
||
|
const filename = fileURLToPath(import.meta.url);
|
||
|
const dirname = path.dirname(filename);
|
||
|
const compat = new FlatCompat({
|
||
|
baseDirectory: dirname,
|
||
|
recommendedConfig: js.configs.recommended,
|
||
|
allConfig: js.configs.all
|
||
|
});
|
||
|
|
||
|
export default [{
|
||
|
ignores: ["src/core/proto/"],
|
||
|
}, ...compat.extends("eslint:recommended", "plugin:@typescript-eslint/recommended"), {
|
||
|
plugins: {
|
||
|
"@typescript-eslint": typescriptEslint,
|
||
|
import: fixupPluginRules(_import),
|
||
|
},
|
||
|
|
||
|
languageOptions: {
|
||
|
globals: {
|
||
|
...globals.browser,
|
||
|
...globals.node,
|
||
|
},
|
||
|
|
||
|
parser: tsParser,
|
||
|
ecmaVersion: "latest",
|
||
|
sourceType: "module",
|
||
|
},
|
||
|
|
||
|
settings: {
|
||
|
"import/parsers": {
|
||
|
"@typescript-eslint/parser": [".ts"],
|
||
|
},
|
||
|
|
||
|
"import/resolver": {
|
||
|
typescript: {
|
||
|
alwaysTryTypes: true,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
|
||
|
rules: {
|
||
|
indent: ["error", 4],
|
||
|
semi: ["error", "always"],
|
||
|
"no-unused-vars": "off",
|
||
|
"no-async-promise-executor": "off",
|
||
|
"@typescript-eslint/no-explicit-any": "off",
|
||
|
"@typescript-eslint/no-unused-vars": "off",
|
||
|
"@typescript-eslint/no-var-requires": "off",
|
||
|
"object-curly-spacing": ["error", "always"],
|
||
|
},
|
||
|
}, {
|
||
|
files: ["**/.eslintrc.{js,cjs}"],
|
||
|
|
||
|
languageOptions: {
|
||
|
globals: {
|
||
|
...globals.node,
|
||
|
},
|
||
|
ecmaVersion: 5,
|
||
|
sourceType: "commonjs",
|
||
|
},
|
||
|
}];
|