Skip to content

Commit 441c054

Browse files
committed
change for master
1 parent c0144c3 commit 441c054

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+3896
-160
lines changed

.eslintrc.js

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
module.exports = {
22
root: true,
33
env: {
4+
es6: true,
45
node: true
56
},
6-
extends: [
7-
'plugin:vue/essential',
8-
'@vue/standard'
9-
],
7+
extends: ['plugin:vue/essential', '@vue/standard'],
108
parserOptions: {
119
parser: 'babel-eslint'
1210
},
1311
rules: {
1412
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
15-
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
13+
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
14+
'vue/comment-directive': 0,
15+
quotes: [1, 'single'],
16+
semi: [0, 'never'],
17+
'space-before-function-paren': ['error', 'never']
1618
}
17-
}
19+
};

.prettierrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"singleQuote": true
3+
}

0 commit comments

Comments
 (0)