mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
12 lines
350 B
JavaScript
12 lines
350 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
extends: ["plugin:vue/vue3-recommended", "eslint:recommended", "@unocss", "plugin:prettier/recommended"],
|
|
rules: {
|
|
"vue/no-undef-components": ["error", {
|
|
ignorePatterns: ["router-link", "router-view", "i18n-t", "ErrorHandler"]
|
|
}],
|
|
},
|
|
};
|