22 lines
599 B
JavaScript
22 lines
599 B
JavaScript
/* eslint-env node */
|
|
require("@rushstack/eslint-patch/modern-module-resolution");
|
|
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
"plugin:vue/vue3-recommended",
|
|
"eslint:recommended",
|
|
"@vue/eslint-config-typescript/recommended",
|
|
"@vue/eslint-config-prettier",
|
|
"plugin:storybook/recommended",
|
|
],
|
|
env: {
|
|
"vue/setup-compiler-macros": true,
|
|
},
|
|
ignorePatterns: ["versionize.js", "tailwind.config.js", "postcss.config.js"],
|
|
rules: {
|
|
"@typescript-eslint/no-unused-vars": ["warn"],
|
|
"@typescript-eslint/ban-ts-comment": ["warn"],
|
|
"prefer-const": ["warn"],
|
|
},
|
|
};
|