Skip to content

Commit

Permalink
Merge branch 'develop' into migracion-argentinadatos
Browse files Browse the repository at this point in the history
ferminrp authored Feb 28, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents f2bb88c + 06016a8 commit 235bdad
Showing 4 changed files with 344 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -22,4 +22,4 @@ jobs:
run: bunx eslint "src/**/*.{astro,}"

- name: Check Biome configuration
run: bunx biome check ./
run: bunx biome check --no-errors-on-unmatched --files-ignore-unknown=true ./
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged
324 changes: 324 additions & 0 deletions package-lock.json
20 changes: 15 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -8,8 +8,9 @@
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"lint": "prettier --write \"**/*.{md,mdx,astro}\" && eslint --fix \"src/**/*.{astro,}\" && npx @biomejs/biome check --apply-unsafe ./",
"astro": "astro"
"lint": "prettier --write \"**/*.{md,mdx,astro}\" && eslint --fix \"src/**/*.{astro,}\" && biome check --apply-unsafe --no-errors-on-unmatched --files-ignore-unknown=true ./",
"astro": "astro",
"prepare": "husky"
},
"dependencies": {
"@astrojs/partytown": "2.0.4",
@@ -24,12 +25,21 @@
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@typescript-eslint/parser": "7.0.2",
"typescript": "5.3.3",
"eslint": "8.57.0",
"eslint-plugin-astro": "0.31.4",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"prettier-config-standard": "7.0.0",
"prettier-plugin-astro": "0.13.0",
"prettier-plugin-tailwindcss": "0.5.11"
"prettier-plugin-tailwindcss": "0.5.11",
"typescript": "5.3.3"
},
"lint-staged": {
"*.astro": "eslint --fix",
"*.{astro,md}": "prettier --write",
"*": [
"biome check --apply-unsafe --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}
}

0 comments on commit 235bdad

Please sign in to comment.