mirror of
https://github.com/Spythere/pragotron-td2.git
synced 2026-05-03 05:28:14 +00:00
18 lines
336 B
JavaScript
18 lines
336 B
JavaScript
/* eslint-env node */
|
|
|
|
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
"plugin:vue/vue3-essential",
|
|
"eslint:recommended",
|
|
"@vue/eslint-config-typescript",
|
|
"@vue/eslint-config-prettier/skip-formatting",
|
|
],
|
|
rules: {
|
|
"vue/multi-word-component-names": "off",
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: "latest",
|
|
},
|
|
};
|