mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-08-10 07:11:18 +02:00
- 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
41 lines
874 B
JSON
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"]
|
|
}
|
|
}
|