mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-13 16:27:33 +00:00
34 lines
980 B
JavaScript
34 lines
980 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",
|
|
],
|
|
overrides: [
|
|
{
|
|
files: ["cypress/e2e/**/*.{cy,spec}.{js,ts,jsx,tsx}"],
|
|
extends: ["plugin:cypress/recommended"],
|
|
},
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: "latest",
|
|
},
|
|
rules: {
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
"vue/script-setup-uses-vars": "error",
|
|
"@typescript-eslint/ban-ts-ignore'": "off",
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
"no-use-before-define": "off",
|
|
"@typescript-eslint/no-use-before-define": "off",
|
|
"@typescript-eslint/no-non-null-assertion": "off",
|
|
"@typescript-eslint/no-this-alias": "off",
|
|
"vue/multi-word-component-names": "off",
|
|
},
|
|
};
|