Newer
Older
xc-business-system / .eslintrc
dutingting on 8 Mar 2024 544 bytes 数字示波器配置检定项
{
  "extends": "@antfu",
  "rules": {
    "curly": ["error", "all"],
    "no-tabs": "off",
    "no-const-assign": "off",
    "no-console": "off",
    "eqeqeq": "off",
    "vars-on-top": "off",
    "no-var": "off",
    "array-callback-return": "off",
    "@typescript-eslint/no-this-alias": "off",
    "no-unused-expressions": "off",
    "vue/no-mutating-props": "off",
    "vue/component-name-in-template-casing": [
      "error",
      "kebab-case",
      {
        "registeredComponentsOnly": false,
        "ignores": []
      }
    ]
  }
}