Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/prepare/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
using: composite
steps:
- if: inputs.node-install == 'true'
name: Install Node.js v25
name: Install Node.js
uses: actions/setup-node@v6
with:
node-version: 25
Expand Down
4 changes: 4 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
description: "Changes to our CI configuration files and scripts"
color: "721cdb"

- name: "dependencies"
description: "Update of dependencies"
color: "6f38c2"

- name: "documentation"
description: "Improvements or additions to documentation"
color: "0075ca"
Expand Down
8 changes: 8 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"baseBranches": ["main"],
"rebaseWhen": "conflicted",
"labels": ["dependencies"],
"reviewers": ["Exeloo"]
}
15 changes: 8 additions & 7 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Ignore files for PNPM, NPM and YARN
.idea/
.vscode/

dist/
node_modules/

pnpm-lock.yaml
package-lock.json
yarn.lock
bun.lock
pnpm-workspace.yaml

node_modules/
dist/
coverage/
CHANGELOG.md

coverage/
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
},
"lint-staged": {
"**": [
"prettier --write"
"prettier --ignore-unknown --write"
],
"src/**/*.ts": [
"eslint --fix"
Expand Down