12345678910111213141516171819202122232425262728 |
- {
- "root": true,
- "parser": "@typescript-eslint/parser",
- "ignorePatterns": ["build/", "static/", "node_scripts/", "target/"],
- "parserOptions": {
- "ecmaVersion": 2020
- },
- "overrides": [
- {
- "files": ["src/**/*.ts"]
- }
- ],
- "rules": {
- "indent": ["error", "tab"],
- "semi": ["error", "always"],
- "@typescript-eslint/no-explicit-any": "off",
- "@typescript-eslint/no-unused-vars": "off",
- "quotes": ["error", "single"],
- "@typescript-eslint/explicit-member-accessibility": "error",
- "@typescript-eslint/explicit-function-return-type": "error"
- },
- "plugins": [
- "@typescript-eslint"
- ],
- "extends": [
- "plugin:@typescript-eslint/recommended"
- ]
- }
|