gx
chenyc
2025-06-12 7b72ac13a83764a662159d4a49b7fffb90476ecb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
  "globals": {},
  "env": {
      "browser": true,
      "commonjs": true,
      "node": true,
      "es2022": true
  },
  "parser": "@typescript-eslint/parser",
  "parserOptions": {
    "ecmaVersion": "latest"
  },
  "plugins": [
    "@typescript-eslint"
  ],
  "extends": [
    "airbnb-base",
    "eslint:recommended",
    "plugin:@typescript-eslint/eslint-recommended",
    "plugin:@typescript-eslint/recommended"
  ],
  "rules": {
    "max-len": [1, 1000, 3],
    "@typescript-eslint/ban-types":"off",
    "@typescript-eslint/no-empty-interface":"off",
    "@typescript-eslint/no-explicit-any":"off",
    "@typescript-eslint/no-extraneous-class":"off",
    "@typescript-eslint/no-unnecessary-type-constraint":"off",
    "@typescript-eslint/no-unused-vars":"off",
    "@typescript-eslint/prefer-function-type":"off",
    "@typescript-eslint/unified-signatures":"off",
    "@typescript-eslint/triple-slash-reference":"off",
    "camelcase":"off",
    "comma-dangle":"off",
    "import/extensions":"off",
    "import/no-duplicates":"off",
    "import/no-mutable-exports":"off",
    "import/no-unresolved":"off",
    "indent":"off",
    "lines-between-class-members":"off",
    "max-classes-per-file":"off",
    "no-multiple-empty-lines":"off",
    "no-shadow":"off",
    "no-tabs":"off",
    "no-underscore-dangle":"off",
    "no-use-before-define":"off",
    "object-curly-newline":"off",
    "quotes":"off",
    "semi":"off"
  }
}