Skip to content

Commit

Permalink
fix: 🚨 fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideSegullo committed Oct 25, 2024
1 parent bb7660e commit ce90e00
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx", "*.vue"],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-empty-interface": "off",
"@nx/enforce-module-boundaries": [
"error",
{
Expand All @@ -25,15 +29,23 @@
"files": ["*.ts", "*.tsx"],
"extends": ["plugin:@nx/typescript"],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-extra-semi": "error",
"@typescript-eslint/no-empty-interface": "off",
"no-extra-semi": "off"
}
},
{
"files": ["*.js", "*.jsx"],
"extends": ["plugin:@nx/javascript"],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-extra-semi": "error",
"@typescript-eslint/no-empty-interface": "off",
"no-extra-semi": "off"
}
}
Expand Down
6 changes: 6 additions & 0 deletions packages/nuxt/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@
"@nx/dependency-checks": [
"error",
{
"ignoredDependencies": [
"@quirks/vue",
"@quirks/store",
"nuxt",
"@nuxt/schema"
],
"ignoredFiles": ["{projectRoot}/vite.config.{js,ts,mjs,mts,vue}"]
}
]
Expand Down
6 changes: 6 additions & 0 deletions packages/vue/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@
"@nx/dependency-checks": [
"error",
{
"ignoredDependencies": [
"zustand",
"@cosmjs/stargate",
"@cosmjs/cosmwasm-stargate",
"@walletconnect/universal-provider"
],
"ignoredFiles": ["{projectRoot}/vite.config.{js,ts,mjs,mts,vue}"]
}
]
Expand Down

0 comments on commit ce90e00

Please sign in to comment.