Skip to content
This repository has been archived by the owner on Jul 20, 2024. It is now read-only.

Commit

Permalink
chore: disable some lints temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
BD103 committed Jul 24, 2023
1 parent 1420f64 commit fb2eda3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@
"vue/multi-word-component-names": ["off"],

// TODO: Only disable for `<NuxtLink />`
"vue/singleline-html-element-content-newline": ["off"]
"vue/singleline-html-element-content-newline": ["off"],

// TODO: Fix `default` prop usage
"vue/no-parsing-error": ["off"],

// TODO: Fix rule in typescript generics
"func-call-spacing": ["off"]
}
}
3 changes: 3 additions & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ export default defineNuxtConfig({
{ path: "~/components" },
{ path: "~/components/utils", prefix: "U" },
],
eslint: {
lintOnStart: false,
},
modules: [
"@huntersofbook/naive-ui-nuxt",
"@nuxtjs/eslint-module",
Expand Down

0 comments on commit fb2eda3

Please sign in to comment.