liftinstall/ui/.eslintrc.js

17 lines
296 B
JavaScript
Raw Permalink Normal View History

2019-06-25 05:06:28 +02:00
module.exports = {
root: true,
env: {
node: true
},
2019-12-09 02:27:12 +01:00
extends: [
'plugin:vue/recommended',
2019-06-25 05:06:28 +02:00
'@vue/standard'
],
rules: {
2019-10-21 22:09:26 +02:00
'no-console': 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
2019-10-21 23:58:30 +02:00
'no-redeclare': 'off',
2019-12-09 02:27:12 +01:00
camelcase: 'off'
2019-06-25 05:06:28 +02:00
}
}