92d2045735
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
23 lines
417 B
JavaScript
23 lines
417 B
JavaScript
// http://eslint.org/docs/user-guide/configuring
|
|
|
|
module.exports = {
|
|
root: true,
|
|
parserOptions: {
|
|
parser: 'babel-eslint',
|
|
sourceType: 'module'
|
|
},
|
|
env: {
|
|
browser: true,
|
|
},
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:vue/recommended' // or 'plugin:vue/base'
|
|
],
|
|
|
|
// add your custom rules here
|
|
'rules': {
|
|
// don't require .vue extension when importing
|
|
'no-console': [0],
|
|
},
|
|
}
|