mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
* feat: switch to biome, apply formatting, shellcheck * chore: apply cr comments * chore: few config tweaks, shellcheck hook now py-based * chore: lint fixes and pr comments * chore(lint): megalinter, and other fixes Signed-off-by: Ismo Vuorinen <ismo@ivuorinen.net>
40 lines
1001 B
JSON
40 lines
1001 B
JSON
{
|
|
"name": "ivuorinen-dotfiles",
|
|
"version": "1.0.0",
|
|
"description": "ivuorinen's dotfiles, this is for linting and formatters",
|
|
"directories": {
|
|
"doc": "docs"
|
|
},
|
|
"scripts": {
|
|
"lint:biome": "biome check .",
|
|
"fix:biome": "biome check --write .",
|
|
"format": "biome format --write .",
|
|
"test": "bash test-all.sh",
|
|
"lint:ec": "ec -f gcc",
|
|
"lint": "yarn lint:biome && yarn lint:ec",
|
|
"fix": "yarn fix:biome"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ivuorinen/dotfiles.git"
|
|
},
|
|
"keywords": [
|
|
"dotfiles",
|
|
"ivuorinen"
|
|
],
|
|
"author": "Ismo Vuorinen",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/ivuorinen/dotfiles/issues"
|
|
},
|
|
"homepage": "https://github.com/ivuorinen/dotfiles#readme",
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.3.1",
|
|
"@types/node": "^24.0.1",
|
|
"bats": "^1.12.0",
|
|
"editorconfig-checker": "^6.1.0",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"packageManager": "yarn@4.12.0"
|
|
}
|