| 123456789101112131415161718192021222324252627282930313233 |
- {
- "parser": "@typescript-eslint/parser",
- "parserOptions": {
- "project": "tsconfig.json",
- "sourceType": "module"
- },
- "plugins": [
- "@typescript-eslint/eslint-plugin"
- ],
- "extends": [
- "plugin:@typescript-eslint/recommended"
- ],
- "root": false,
- "env": {
- "node": true,
- "jest": true
- },
- "ignorePatterns": [
- ".eslintrc.js"
- ],
- "rules": {
- "@typescript-eslint/interface-name-prefix": "off",
- "@typescript-eslint/explicit-function-return-type": "off",
- "@typescript-eslint/explicit-module-boundary-types": "off",
- "@typescript-eslint/no-explicit-any": "off",
- "object-curly-newline": ["error", "always"],
- "indent": ["error", 4],
- "semi": "error",
- "quotes": ["error", "double"],
- "prefer-const": "off",
- "no-extra-semi": "off"
- }
- }
|