@alicevia/eslint-config-vue 1.0.17 → 1.0.18

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +13 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -10,6 +10,17 @@ module.exports = {
10
10
  'plugin:@typescript-eslint/recommended',
11
11
  ],
12
12
  overrides: [
13
+ {
14
+ file:'*.vue',
15
+ rules:{
16
+ 'vue/multi-word-component-names': [
17
+ 'error',
18
+ {
19
+ ignores: ['index'], //需要忽略的组件名
20
+ },
21
+ ],
22
+ }
23
+ }
13
24
  ],
14
25
  parser: 'vue-eslint-parser',
15
26
  parserOptions: {
@@ -29,8 +40,8 @@ module.exports = {
29
40
  'comma-dangle': ['error', 'always-multiline'],
30
41
  'space-before-function-paren': ['error', 'always'],
31
42
  'no-multiple-empty-lines': ['error', { max: 2, maxEOF: 0,maxBOF: 0 }],
32
- 'key-spacing': ['error', { afterColon: true }],
33
- 'arrow-spacing': ['error',{ before: true, after: true }],
43
+ 'key-spacing': ['error', { mode: 'strict'}],
44
+ 'arrow-spacing': ['error',{ btrueefore: true, after: }],
34
45
  'object-curly-spacing': ['error', 'always'],
35
46
  'no-console': ['error', { allow: ['warn', 'error'] }],
36
47
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicevia/eslint-config-vue",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "files": [