Skip to content

Commit 539b34b

Browse files
authoredJun 16, 2017
Merge pull request #22 from vuejs/dev
Update master branch
2 parents a3ffb66 + b018309 commit 539b34b

File tree

97 files changed

+7868
-59
lines changed

Some content is hidden

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

97 files changed

+7868
-59
lines changed
 

‎.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
lib/recommended-rules.js

‎.eslintrc.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
module.exports = {
2+
root: true,
3+
parserOptions: {
4+
ecmaVersion: 6
5+
},
6+
env: {
7+
node: true,
8+
mocha: true
9+
},
10+
extends: [
11+
'plugin:eslint-plugin/recommended',
12+
'plugin:vue-libs/recommended'
13+
],
14+
plugins: [
15+
'eslint-plugin'
16+
],
17+
rules: {
18+
'eslint-plugin/report-message-format': ['error', '^[A-Z].*\\.$'],
19+
'eslint-plugin/prefer-placeholders': 'error',
20+
'eslint-plugin/consistent-output': 'error'
21+
}
22+
}

0 commit comments

Comments
 (0)