🎉 Initial commit

This commit is contained in:
Jakub Juszczak
2016-06-26 15:24:29 +02:00
commit 0820ba63b3
36 changed files with 964 additions and 0 deletions

19
.eslintrc.js Normal file
View File

@@ -0,0 +1,19 @@
module.exports = {
root: true,
parserOptions: {
sourceType: 'module'
},
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
extends: 'standard',
// required to lint *.vue files
plugins: [
'html'
],
// add your custom rules here
'rules': {
// allow paren-less arrow functions
'arrow-parens': 0,
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
}
}