Skip to content

Commit

Permalink
Merge pull request #25 from ducktors/add-new-custom-routes
Browse files Browse the repository at this point in the history
feat: add new custom configuration for routes
  • Loading branch information
matteovivona authored Feb 20, 2025
2 parents f39ab24 + f3a9ca3 commit 1af6e6a
Show file tree
Hide file tree
Showing 16 changed files with 5,458 additions and 11,545 deletions.
25 changes: 0 additions & 25 deletions .eslintrc.js

This file was deleted.

3 changes: 0 additions & 3 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx commitlint --edit "$1"
3 changes: 0 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm run build
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@
</div>

## Installation
__Note: Arecibo version 1 supports version 2 of Fastify. Arecibo version 2 supports version 3 of Fastify.__
__Note: Please refer to the table below to find the correct version of Arecibo for your Fastify version.__

| Arecibo version | Fastify version | Branch |
| -- | -- | -- |
| [v3](https://github.com/ducktors/arecibo/releases/tag/v3.1.0) | Fastify 3, 4, 5 | [master](https://github.com/ducktors/arecibo/tree/master) |
| [v1.1.0](https://github.com/ducktors/arecibo/releases/tag/v1.1.0) | Fastify 2 | deprecated |
| [v4](https://github.com/ducktors/arecibo/releases/tag/v4.0.0) | Fastify 4, 5 | [master](https://github.com/ducktors/arecibo/tree/master) |
| [v3](https://github.com/ducktors/arecibo/releases/tag/v3.1.1) | Fastify 3, 4, 5 | not maintained |
| [v1.1.0](https://github.com/ducktors/arecibo/releases/tag/v1.1.0) | Fastify 2 | deprecated |


```bash
Expand Down
21 changes: 21 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"$schema": "https://biomejs.dev/schemas/1.1.2/schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"formatter": {
"indentStyle": "space"
},
"javascript": {
"formatter": {
"semicolons": "asNeeded",
"quoteStyle": "single"
}
}
}
7 changes: 7 additions & 0 deletions extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"biomejs.biome",
"redhat.vscode-yaml",
"aaron-bond.better-comments"
]
}
Loading

0 comments on commit 1af6e6a

Please sign in to comment.