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

15 lines
240 B
JavaScript
Raw Normal View History

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