Skip to content

Commit

Permalink
chore: override no console and prettier on manual lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Epoxide committed Nov 6, 2024
1 parent 7b02290 commit a37c2bf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/astro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"preview": "astro preview",
"astro": "astro",
"check": "astro check",
"lint": "eslint .",
"lint": "eslint . --rule 'no-console: error' --rule 'prettier/prettier: error'",
"test": "playwright test"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint": "eslint . --rule 'no-console: error' --rule 'prettier/prettier: error'",
"test": "playwright test",
"update-snapshots": "playwright test --update-snapshots"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"lint": "eslint .",
"lint": "eslint . --rule 'no-console: error' --rule 'prettier/prettier: error'",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
Expand Down
2 changes: 1 addition & 1 deletion packages/solid-start/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"build": "vinxi build",
"start": "vinxi start",
"version": "vinxi version",
"lint": "eslint .",
"lint": "eslint . --rule 'no-console: error' --rule 'prettier/prettier: error'",
"test": "playwright test"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/sveltekit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint .",
"lint": "eslint . --rule 'no-console: error' --rule 'prettier/prettier: error'",
"test": "playwright test"
},
"devDependencies": {
Expand Down

0 comments on commit a37c2bf

Please sign in to comment.