ifms-pti/web/.eslintrc.js
2020-11-06 09:31:28 -04:00

19 lines
240 B
JavaScript
Executable File

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