We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b828e8 commit 820fa78Copy full SHA for 820fa78
1 file changed
.eslintrc.json
@@ -0,0 +1,24 @@
1
+{
2
+ "root": true,
3
+ "parser": "@typescript-eslint/parser",
4
+ "parserOptions": {
5
+ "ecmaVersion": 2022,
6
+ "sourceType": "module"
7
+ },
8
+ "plugins": ["@typescript-eslint"],
9
+ "extends": [
10
+ "eslint:recommended",
11
+ "plugin:@typescript-eslint/recommended"
12
+ ],
13
+ "env": {
14
+ "node": true,
15
+ "es2022": true
16
17
+ "rules": {
18
+ "@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
19
+ "@typescript-eslint/explicit-function-return-type": "off",
20
+ "@typescript-eslint/no-explicit-any": "warn",
21
+ "@typescript-eslint/no-non-null-assertion": "warn"
22
23
+ "ignorePatterns": ["dist/", "node_modules/", "*.js"]
24
+}
0 commit comments