Skip to content

Commit

Permalink
Codestyle, format, eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Richter committed Apr 7, 2018
1 parent c0f9dc5 commit cec8b57
Show file tree
Hide file tree
Showing 7 changed files with 799 additions and 132 deletions.
15 changes: 11 additions & 4 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
// http://eslint.org/docs/user-guide/configuring
// 0 = off, 1 = warn, 2 = error

module.exports = {
extends: [
'eslint:recommended',
'plugin:vue/essential'
]
extends: [
'eslint:recommended',
'plugin:vue/essential',
],
rules: {
'comma-dangle': [1, 'always'],
'semi': [1, 'never'],
'object-curly-spacing': [2, 'always', {'objectsInObjects': false}],
'standard/object-curly-even-spacing': [0, 'either'],
}
}
Loading

0 comments on commit cec8b57

Please sign in to comment.