wangzhibo
2026-07-18 1f28c445fd19eb404b47306ea833261bd8ab8fe6
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
{
  "extends": "./node_modules/mwts/",
  "ignorePatterns": [
      "node_modules",
      "dist",
      "test",
      "jest.config.js",
      "typings",
      "public/**/**",
      "view/**/**",
      "packages"
  ],
  "env": {
      "jest": true
  },
  "rules": {
      "@typescript-eslint/explicit-module-boundary-types": "off",
      "@typescript-eslint/no-unused-vars": "off",
      "@typescript-eslint/ban-ts-comment": "off",
      "node/no-extraneous-import": "off",
      "no-empty": "off",
      "node/no-extraneous-require": "off",
      "node/no-unpublished-import": "off",
      "eqeqeq": "off",
      "node/no-unsupported-features/node-builtins": "off",
      "@typescript-eslint/ban-types": "off",
      "no-control-regex": "off",
      "prefer-const": "off"
  }
}