Spaces:
Running
Running
| { | |
| "root": true, | |
| "parser": "@typescript-eslint/parser", | |
| "plugins": ["@typescript-eslint"], | |
| "extends": ["eslint:recommended", "@typescript-eslint/recommended"], | |
| "parserOptions": { | |
| "ecmaVersion": 2022, | |
| "sourceType": "module" | |
| }, | |
| "env": { | |
| "browser": true, | |
| "es2022": true | |
| }, | |
| "rules": { | |
| "@typescript-eslint/no-unused-vars": [ | |
| "error", | |
| { "argsIgnorePattern": "^_" } | |
| ], | |
| "@typescript-eslint/no-explicit-any": "warn", | |
| "@typescript-eslint/no-non-null-assertion": "warn" | |
| }, | |
| "ignorePatterns": ["dist/", "node_modules/"] | |
| } | |