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
983 B
JavaScript
39 lines
983 B
JavaScript
module.exports = {
|
|
env: { node: true },
|
|
parser: "@typescript-eslint/parser",
|
|
plugins: ["@typescript-eslint", "prettier"],
|
|
extends: [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
|
"plugin:prettier/recommended",
|
|
],
|
|
parserOptions: {
|
|
sourceType: "module",
|
|
ecmaFeatures: {
|
|
modules: true,
|
|
},
|
|
project: "./tsconfig.json",
|
|
},
|
|
rules: {
|
|
"@typescript-eslint/require-await": 0,
|
|
"jsdoc/require-description": 2,
|
|
|
|
"no-await-in-loop": 2,
|
|
},
|
|
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
|
|
},
|
|
},
|
|
],
|
|
};
|