quanyawei
2023-10-25 3d47b03fb107e73f96b631c98ba1e275576da064
.eslintrc.js
@@ -15,7 +15,7 @@
  //it is base on https://github.com/vuejs/eslint-config-vue
  rules: {
    'eqeqeq': ['error', 'always'], // 强制使用三个等于号
    'semi': 2, // 语句可以不需要分号结尾
    'semi': 0, // 语句可以不需要分号结尾
    'no-use-before-define': [1, 'nofunc'], // 未定义前不能使用
    'max-lines': ['error', { 'max': 2000, 'skipBlankLines': true }],
    'no-mixed-spaces-and-tabs': 'warn', // 禁止使用空格和tab混合缩进