ifms-printer-manager/web/.eslintrc.js

15 lines
236 B
JavaScript
Raw Permalink Normal View History

2023-06-15 11:39:13 +00:00
module.exports = {
root: true,
env: {
2023-06-28 18:34:15 +00:00
node: true
2023-06-15 11:39:13 +00:00
},
extends: [
2023-06-28 18:34:15 +00:00
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/eslint-config-typescript'
2023-06-15 11:39:13 +00:00
],
rules: {
2023-06-28 18:34:15 +00:00
'vue/multi-word-component-names': 'off'
}
2023-06-15 11:39:13 +00:00
}