1 // http://eslint.org/docs/user-guide/configuring
5 parser
: 'babel-eslint',
12 // https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
14 // required to lint *.vue files
18 // add your custom rules here
20 // allow paren-less arrow functions
23 'generator-star-spacing': 0,
24 // allow debugger during development
25 'no-debugger': process
.env
.NODE_ENV
=== 'production' ? 2 : 0