digitale-online-offline-reg.../.eslintrc.js
Brain 9ba292f701
All checks were successful
continuous-integration/drone/pr Build is passing
Update parser config
2024-04-23 19:00:30 +02:00

18 lines
357 B
JavaScript

module.exports = {
root: true,
env: {
node: true
},
extends: [
'plugin:vue/vue3-essential',
'@vue/standard'
],
parserOptions: {
parser: '@babel/eslint-parser'
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
}
}