1
1
mirror of https://github.com/rubjo/victor-mono.git synced 2024-08-15 09:20:40 +03:00
victor-mono/.eslintrc.js
Rune Bjørnerås 449f8ce118 Initial
2019-06-04 13:05:30 +02:00

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'
}
}