You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
module.exports = {
|
|
env: { node: true },
|
|
parser: "@typescript-eslint/parser",
|
|
plugins: ["@typescript-eslint", "prettier", "with-tsc-error"],
|
|
extends: [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
|
"plugin:prettier/recommended",
|
|
],
|
|
parserOptions: {
|
|
sourceType: "module",
|
|
ecmaFeatures: {
|
|
modules: true,
|
|
},
|
|
project: ["./src/back/tsconfig.json", "./src/front/tsconfig.json"],
|
|
},
|
|
rules: {
|
|
"@typescript-eslint/require-await": 0,
|
|
/* "jsdoc/require-description": 2, */
|
|
"no-await-in-loop": 2,
|
|
"with-tsc-error/all": ["warn", {}],
|
|
},
|
|
settings: { jsdoc: { mode: "typescript" } },
|
|
overrides: [
|
|
{
|
|
files: ["*.subtest.ts", "*.test.ts"],
|
|
rules: {
|
|
"@typescript-eslint/no-unsafe-member-access": 0,
|
|
"prefer-const": 0,
|
|
"@typescript-eslint/no-unsafe-call": 0,
|
|
"@typescript-eslint/no-unsafe-return": 0,
|
|
"@typescript-eslint/no-unsafe-assignment": 0,
|
|
"no-await-in-loop": 1, // sometimes it's easier to debug when requests run sequentially
|
|
},
|
|
},
|
|
],
|
|
};
|