Skip to content

Commit

Permalink
fix: add --no-ignore flag to include .astro files
Browse files Browse the repository at this point in the history
  • Loading branch information
kilted-andres committed Aug 9, 2024
1 parent e6a7951 commit 6cad18e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"scripts": {
"prettify": "prettier --write \"src/**/*.astro\" \"src/**/*.ts*\" \"src/**/*.css*\"",
"lint": "pnpm lint-css && pnpm lint-js",
"lint-js": "eslint --max-warnings 0 --config ./.eslintrc.js \"src/**/*.astro\" \"src/**/*.ts\" \"src/**/*.tsx\"",
"lint-js": "eslint --max-warnings 0 --config ./.eslintrc.js --no-ignore \"src/**/*.astro\" \"src/**/*.ts\" \"src/**/*.tsx\"",
"lint-css": "stylelint --max-warnings 0 \"src/**/*.astro\" \"src/**/*.css\" --custom-formatter=stylelint-actions-formatters",
"test": "tsc --noEmit && astro check && vitest",
"dev": "astro dev --port 3000",
Expand Down

0 comments on commit 6cad18e

Please sign in to comment.