1
1
mirror of https://github.com/rubjo/victor-mono.git synced 2024-09-11 06:25:41 +03:00
victor-mono/.eslintrc.js

19 lines
397 B
JavaScript
Raw Normal View History

2019-06-04 14:05:30 +03:00
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'
}
}