Files
xamxam/biome.json
T
Pontoporeia 3e93150c76 justfile: standardise test recipes to lint-php/lint-css/lint-js/test + add fix recipe
- Removed ambiguous aliases: phpstan, cs-check, syntax
- Split lint-biome into lint-css and lint-js with correct paths
- Added lint meta-recipe and fix recipe (biome --unsafe + php-cs-fixer)
- Fixed FormBootstrap dead null check, CSS shorthand override bug
- Updated phpstan baseline, suppressed noDescendingSpecificity/noInnerDeclarations
- Applied ~74 biome auto-fixes across CSS/JS
2026-07-05 11:07:41 +02:00

41 lines
874 B
JSON

{
"$schema": "https://biomejs.dev/schemas/2.3.15/schema.json",
"files": {
"ignoreUnknown": true,
"includes": [
"**",
"!app/public/assets/js/htmx.min.js",
"!app/public/assets/js/overtype.min.js",
"!app/public/assets/js/sortable.min.js",
"!app/public/assets/js/vendor/**",
"!app/public/assets/css/filepond*.css",
"!app/public/assets/css/modern-normalize*.css",
"!app/public/assets/dist/**"
]
},
"css": {
"formatter": {
"enabled": true
},
"linter": {
"enabled": true
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"noDescendingSpecificity": "off"
},
"correctness": {
"noInnerDeclarations": "off"
}
}
},
"formatter": {
"enabled": true,
"includes": ["**/*.js", "**/*.css"]
}
}