| 1234567891011121314151617181920212223242526 |
- {
- "parser": "@typescript-eslint/parser",
- "extends": [
- "plugin:@typescript-eslint/recommended"
- ],
- "plugins": [
- "prettier",
- "@typescript-eslint"
- ],
- "parserOptions": {
- "ecmaVersion": 2018,
- "sourceType": "module"
- },
- "rules": {
- "no-console": "off",
- "prettier/prettier": "error",
- "@typescript-eslint/explicit-function-return-type": "off",
- "@typescript-eslint/ban-ts-ignore": "off",
- "@typescript-eslint/camelcase": "off",
- "@typescript-eslint/explicit-module-boundary-types": "off",
- "@typescript-eslint/no-explicit-any": "off",
- "@typescript-eslint/ban-ts-comment": "off",
- "@typescript-eslint/no-var-requires": "off",
- "prefer-spread": "off"
- }
- }
|