mirror of
https://github.com/creativetimofficial/vue-material-kit.git
synced 2025-05-22 19:44:21 +08:00
15 lines
293 B
JavaScript
15 lines
293 B
JavaScript
/* eslint-env node */
|
|
require("@rushstack/eslint-patch/modern-module-resolution");
|
|
|
|
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
"plugin:vue/vue3-essential",
|
|
"eslint:recommended",
|
|
"@vue/eslint-config-prettier",
|
|
],
|
|
rules: {
|
|
"vue/multi-word-component-names": "off",
|
|
},
|
|
};
|