Install
openclaw skills install biome-config-validatorValidate and lint Biome (biome.json) configuration files for structure, rule conflicts, deprecated options, and best practices. 22 rules across structure, linting, formatting, and compatibility categories.
openclaw skills install biome-config-validatorValidate biome.json configuration files for correctness, conflicts, deprecated options, and best practices.
# Validate a biome.json file (all rules)
python3 scripts/biome_config_validator.py lint biome.json
# Check for rule conflicts only
python3 scripts/biome_config_validator.py conflicts biome.json
# Check for deprecated options
python3 scripts/biome_config_validator.py deprecated biome.json
# Validate structure only
python3 scripts/biome_config_validator.py validate biome.json
# JSON output
python3 scripts/biome_config_validator.py lint biome.json --format json
# Summary only
python3 scripts/biome_config_validator.py lint biome.json --format summary