forked from profectus/Profectus
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
require("@rushstack/eslint-patch/modern-module-resolution");
|
|
|
|
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true
|
|
},
|
|
extends: [
|
|
"plugin:vue/vue3-essential",
|
|
"@vue/eslint-config-typescript/recommended",
|
|
"@vue/eslint-config-prettier"
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 2020,
|
|
project: "tsconfig.json"
|
|
},
|
|
ignorePatterns: ["src/lib"],
|
|
rules: {
|
|
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
|
|
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
|
|
"vue/script-setup-uses-vars": "warn",
|
|
"vue/no-mutating-props": "off",
|
|
"vue/multi-word-component-names": "off",
|
|
"@typescript-eslint/strict-boolean-expressions": [
|
|
"error",
|
|
{
|
|
allowNullableObject: true,
|
|
allowNullableBoolean: true
|
|
}
|
|
],
|
|
"eqeqeq": [
|
|
"error",
|
|
"always",
|
|
{
|
|
"null": "never"
|
|
}
|
|
]
|
|
},
|
|
globals: {
|
|
defineProps: "readonly",
|
|
defineEmits: "readonly"
|
|
}
|
|
};
|