2023-09-11 05:46:20 +02:00
|
|
|
module.exports = {
|
|
|
|
|
extends: [
|
|
|
|
|
"eslint:recommended",
|
|
|
|
|
"plugin:@typescript-eslint/strict-type-checked",
|
|
|
|
|
"plugin:@typescript-eslint/stylistic",
|
2023-09-13 02:29:13 +02:00
|
|
|
"plugin:prettier/recommended",
|
2023-09-11 05:46:20 +02:00
|
|
|
],
|
|
|
|
|
parser: "@typescript-eslint/parser",
|
|
|
|
|
parserOptions: {
|
|
|
|
|
project: "./tsconfig.json",
|
|
|
|
|
},
|
|
|
|
|
ignorePatterns: ["node_modules/", "dist/", ".eslintrc.cjs"],
|
|
|
|
|
plugins: ["@typescript-eslint"],
|
|
|
|
|
root: true,
|
2023-09-27 00:19:10 +02:00
|
|
|
rules: {
|
|
|
|
|
"@typescript-eslint/no-unsafe-assignment": "off",
|
2023-10-16 05:51:29 +02:00
|
|
|
"@typescript-eslint/no-unsafe-argument": "off",
|
2023-11-20 03:42:40 +01:00
|
|
|
"@typescript-eslint/no-explicit-any": "off",
|
2023-11-23 05:10:37 +01:00
|
|
|
"@typescript-eslint/consistent-type-exports": "error",
|
|
|
|
|
"@typescript-eslint/consistent-type-imports": "error"
|
2023-09-27 00:19:10 +02:00
|
|
|
},
|
2023-09-11 05:46:20 +02:00
|
|
|
};
|