mirror of
https://github.com/rubjo/victor-mono.git
synced 2024-11-26 21:34:47 +03:00
19 lines
397 B
JavaScript
19 lines
397 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true
|
|
},
|
|
'extends': [
|
|
'plugin:vue/recommended',
|
|
'@vue/standard'
|
|
],
|
|
rules: {
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'prouduction' ? 'error' : 'off',
|
|
'import/no-webpack-loader-syntax': 'off'
|
|
},
|
|
parserOptions: {
|
|
parser: 'babel-eslint'
|
|
}
|
|
}
|