baiqiu-cms-decoration-dg 0.3.0 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.eslintrc.js CHANGED
@@ -1,20 +1,16 @@
1
1
  module.exports = {
2
2
  extends: [
3
- 'plugin:vue/essential',
4
- '@vue/standard' // 这里使用了@vue/standard作为规则集,也可以选择其他规则集
3
+ "plugin:vue/recommended",
5
4
  ],
6
- // extends: [
7
- // "plugin:vue/recommended",
8
- // ],
9
- // rules: {
10
- // //禁止空格报错检查
11
- // 'generator-star-spacing': 'off',
12
- // 'vue/attribute-hyphenation': 'off',
13
- // 'vue/max-attributes-per-line': 'off',
14
- // 'vue/singleline-html-element-content-newline': 'off',
15
- // 'vue/multiline-html-element-content-newline': 'off',
16
- // 'vue/html-closing-bracket-newline': 'off',
17
- // 'vue/html-indent':'off',
18
- // 'vue/no-v-html': 'off'
19
- // }
5
+ rules: {
6
+ //禁止空格报错检查
7
+ 'generator-star-spacing': 'off',
8
+ 'vue/attribute-hyphenation': 'off',
9
+ 'vue/max-attributes-per-line': 'off',
10
+ 'vue/singleline-html-element-content-newline': 'off',
11
+ 'vue/multiline-html-element-content-newline': 'off',
12
+ 'vue/html-closing-bracket-newline': 'off',
13
+ 'vue/html-indent':'off',
14
+ 'vue/no-v-html': 'off'
15
+ }
20
16
  }