-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.js
More file actions
44 lines (41 loc) · 1002 Bytes
/
eslint.config.js
File metadata and controls
44 lines (41 loc) · 1002 Bytes
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
import js from "@eslint/js";
import globals from "globals";
import tseslint from "typescript-eslint";
export default tseslint.config(
{ ignores: ["dist"] },
{
extends: [js.configs.recommended, ...tseslint.configs.recommended],
files: ["**/*.ts"],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
rules: {
"no-var": 0,
"no-console": 1,
"@typescript-eslint/no-empty-function": 0,
//#region TS conflicts
"no-unused-vars": 0,
//#endregion
//#region TS
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-unused-vars": [
1,
{
vars: "all",
args: "after-used",
ignoreRestSiblings: true,
argsIgnorePattern: "^__",
},
],
},
},
{
files: ["**/*.test.{ts,tsx}"],
rules: {
"@typescript-eslint/no-explicit-any": "off",
"prefer-const": "off",
"no-prototype-builtins": "off",
},
},
);