| 1234567891011121314151617181920212223242526 |
- {
- "extends": [
- "eslint:recommended",
- "plugin:@typescript-eslint/eslint-recommended",
- "plugin:@typescript-eslint/recommended"
- ],
- "parser": "@typescript-eslint/parser",
- "parserOptions": {
- "ecmaVersion": 2020,
- "sourceType": "module"
- },
- "plugins": ["@typescript-eslint"],
- "rules": {
- "no-unexpected-multiline": "off",
- "@typescript-eslint/indent": "off",
- "@typescript-eslint/explicit-function-return-type": "off",
- "@typescript-eslint/no-non-null-assertion": "off",
- "@typescript-eslint/no-use-before-define": "off",
- "@typescript-eslint/no-unused-vars": [
- "warn",
- {
- "argsIgnorePattern": "^_"
- }
- ]
- }
- }
|