* Moved eslint and @nuxt/eslint to devDependencies * Added vitest to project and 1 test * Tweaked Sonar workflow in order to run tests and coverage * Removed offending config line
12 lines
406 B
JavaScript
12 lines
406 B
JavaScript
// @ts-check
|
|
import withNuxt from "./.nuxt/eslint.config.mjs";
|
|
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
|
|
|
|
export default withNuxt(eslintPluginPrettierRecommended, {
|
|
files: ["**/*.{ts,js,vue}"],
|
|
rules: {
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/no-require-imports": "off",
|
|
"@typescript-eslint/no-unused-vars": "warn",
|
|
},
|
|
});
|