瀏覽代碼

fix(webapp): reactivate strict eslint rule

Problems are are solved. Restore default `error` lint result.
Rotzbua 2 年之前
父節點
當前提交
84e14fc868
共有 1 個文件被更改,包括 0 次插入2 次删除
  1. 0 2
      www/webapp/.eslintrc.js

+ 0 - 2
www/webapp/.eslintrc.js

@@ -12,8 +12,6 @@ module.exports = {
   rules: {
     'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
     'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
-    'vue/no-reserved-component-names': 'warn',
-    'vue/no-v-text-v-html-on-component': 'warn',
     'vue/multi-word-component-names': 'off'
   },
   ignorePatterns: ['**/src/modules/**/*'],