ifms-pti/web/.eslintrc.js

19 lines
240 B
JavaScript
Raw Normal View History

2020-11-06 13:31:28 +00:00
module.exports = {
root: true,
env: {
node: true
},
rules: {
'no-console': 'off',
'no-debugger': 'off'
},
parserOptions: {
parser: 'babel-eslint'
},
extends: ['plugin:vue/recommended', '@vue/prettier']
}