123456789101112131415161718192021222324252627282930313233343536373839 |
- module.exports = {
- "env": {
- "browser": true,
- "es6": true,
- "node": true
- },
- "parser": "@typescript-eslint/parser",
- "parserOptions": {
- "project": "tsconfig.json",
- "sourceType": "module"
- },
- "plugins": [
- "eslint-plugin-import",
- "@typescript-eslint"
- ],
- "root": true,
- "rules": {
- "@typescript-eslint/no-explicit-any": "off",
- "@typescript-eslint/quotes": [
- "error",
- "double"
- ],
- "arrow-parens": [
- "error",
- "always"
- ],
- "comma-dangle": [
- "error",
- {
- "objects": "always-multiline",
- "arrays": "always-multiline",
- "functions": "never"
- }
- ],
- "import/order": "off",
- "quotes": "error"
- }
- };
|