mirror of
https://github.com/GuerillaStudio/souvenir.git
synced 2024-11-08 09:11:52 +00:00
17 lines
273 B
JavaScript
17 lines
273 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
env: {
|
||
|
node: true
|
||
|
},
|
||
|
'extends': [
|
||
|
'plugin:vue/essential',
|
||
|
'@vue/standard'
|
||
|
],
|
||
|
rules: {
|
||
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
|
||
|
},
|
||
|
parserOptions: {
|
||
|
parser: 'babel-eslint'
|
||
|
}
|
||
|
}
|