tijnjh-config
v0.1.0
Published
> [!CAUTION] > 🚧 Heavily work in progress 🚧
Downloads
96
Readme
how to use
[!CAUTION] 🚧 Heavily work in progress 🚧
install the following dependencies
bun add -D tijnjh-config oxfmt oxlint oxlint-tsgolintadd the config files to the project root
.oxfmtrc.jsonc - copy this file from this repo, since oxfmt hasn't implemented config sharing/extending for oxfmt yet
.oxlintrc.jsonc:
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"extends": ["./node_modules/tijnjh-config/src/.oxlintrc.jsonc"]
}next, add the following scripts to your package.json
{
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix"
}