| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- "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": "off",
- "@typescript-eslint/indent": [
- "error",
- 4,
- {
- "ignoredNodes": [
- "PropertyDefinition",
- "Decorator"
- ],
- "SwitchCase": 1
- }
- ],
- "@typescript-eslint/no-non-null-assertion": "off",
- "@typescript-eslint/no-unused-vars": "off",
- "semi": "error",
- "quotes": [
- "error",
- "double"
- ],
- "prefer-const": "off",
- "no-extra-semi": "off"
- }
- }
|