| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "env": {
- "browser": true,
- "es2021": true
- },
- "parser": "@typescript-eslint/parser",
- "extends": [
- "standard",
- "plugin:@typescript-eslint/recommended",
- "plugin:prettier/recommended"
- ],
- "parserOptions": {
- "ecmaVersion": "latest",
- "sourceType": "module"
- },
- "plugins": [
- "react",
- "@typescript-eslint"
- ],
- "ignorePatterns": [],
- "rules": {
- "new-cap": [
- "off"
- ],
- "no-unused-vars": [
- "off"
- ],
- "n/handle-callback-err": "off",
- "n/no-callback-literal":"off",
- "n/no-path-concat": "warn",
- "eqeqeq": "off",
- "prefer-spread": "warn",
- "no-useless-catch": "warn",
- "no-use-before-define": "off",
- "camelcase": "off",
- "no-case-declarations": "warn",
- "no-useless-call": "warn",
- "no-useless-constructor": "off",
- "no-unused-expressions":"off",
- "@typescript-eslint/no-unused-vars": "off",
- "@typescript-eslint/no-explicit-any": "off",
- "@typescript-eslint/ban-ts-comment": "off",
- "@typescript-eslint/no-this-alias": "off",
- "@typescript-eslint/no-var-requires": "off",
- "@typescript-eslint/no-empty-function": "off",
- "@typescript-eslint/ban-types": [
- "warn"
- ]
- }
- }
|