frequi_origin/.eslintrc.js

21 lines
389 B
JavaScript
Raw Normal View History

2020-05-04 04:31:12 +00:00
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/essential',
2020-05-04 04:50:09 +00:00
'@vue/airbnb',
"prettier"
2020-05-04 04:31:12 +00:00
],
2020-05-04 04:50:09 +00:00
'plugins': ["prettier"],
2020-05-04 04:31:12 +00:00
parserOptions: {
parser: 'babel-eslint'
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
2020-05-04 05:28:53 +00:00
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
2020-05-04 04:31:12 +00:00
}
}