File tree 3 files changed +7
-2
lines changed
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -11,18 +11,20 @@ module.exports = {
11
11
extends : [
12
12
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
13
13
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
14
- 'plugin:vue/essential' ,
14
+ 'plugin:vue/essential' ,
15
15
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
16
16
'standard'
17
17
] ,
18
18
// required to lint *.vue files
19
19
plugins : [
20
20
'vue'
21
21
] ,
22
+
22
23
// add your custom rules here
23
24
rules : {
24
25
// allow async-await
25
26
'generator-star-spacing' : 'off' ,
27
+ "vue/no-dupe-keys" : "off" ,
26
28
// allow debugger during development
27
29
'no-debugger' : process . env . NODE_ENV === 'production' ? 'error' : 'off'
28
30
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "editor.autoSave" : " on"
3
+ }
Original file line number Diff line number Diff line change 1
- /* eslint-disable no-unused-expressions */
1
+ /* eslint-disable no-unused-expressions, vue/no-dupe-keys */
2
2
import Vue from 'vue'
3
3
import VueNumericInput from '../../../src/vue-numeric-input.vue'
4
4
import { triggerEvent , triggerClick } from '../util'
You can’t perform that action at this time.
0 commit comments