mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
31 lines
593 B
JavaScript
31 lines
593 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-typescript",
|
|
"@vue/eslint-config-prettier",
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: "latest",
|
|
},
|
|
rules: {
|
|
"@typescript-eslint/no-unused-vars": [
|
|
"warn",
|
|
{
|
|
argsIgnorePattern: "^_",
|
|
varsIgnorePattern: "^_",
|
|
},
|
|
],
|
|
"vue/multi-word-component-names": [
|
|
"error",
|
|
{
|
|
ignores: ["Overview"],
|
|
},
|
|
],
|
|
},
|
|
};
|