-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.js
executable file
·47 lines (46 loc) · 1.18 KB
/
eslint.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import pluginJs from "@eslint/js";
import jest from "eslint-plugin-jest";
import globals from "globals";
import tseslint from "typescript-eslint";
/** @type {import('eslint').Linter.Config[]} */
export default [
{ files: ["src/**/*.ts"] },
{ ignores: ["dist", "coverage", "*.js"] },
{ languageOptions: { globals: globals.node } },
pluginJs.configs.recommended,
...tseslint.configs.recommendedTypeChecked,
{
languageOptions: {
parserOptions: {
project: "./tsconfig.json",
},
},
settings: {
"import/resolver": {
typescript: true,
node: true,
},
},
rules: {
"@typescript-eslint/no-floating-promises": ["error"],
"@typescript-eslint/no-unused-vars": [
"warn",
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
caughtErrorsIgnorePattern: "^_",
destructuredArrayIgnorePattern: "^_",
},
],
},
},
{
files: ["__tests__/**/*.ts"],
...jest.configs["flat/recommended"],
rules: {
...jest.configs["flat/recommended"].rules,
"@typescript-eslint/unbound-method": "off",
"jest/unbound-method": "error",
},
},
];