| 12345678910111213141516 |
- {
- "root": true,
- "env": {
- "browser": true
- },
- "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
- "parser": "@typescript-eslint/parser",
- "plugins": ["@typescript-eslint", "prettier"],
- "rules": {
- "@typescript-eslint/ban-ts-comment": "off",
- "@typescript-eslint/no-explicit-any": "off",
- "@typescript-eslint/no-unused-vars": "off",
- "@typescript-eslint/no-empty-interface": "off",
- "@typescript-eslint/consistent-type-imports": "error"
- }
- }
|