diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml index 182068a..5ae00d5 100644 --- a/.github/workflows/super-linter.yml +++ b/.github/workflows/super-linter.yml @@ -26,4 +26,6 @@ jobs: VALIDATE_EDITORCONFIG: true VALIDATE_MARKDOWN: true VALIDATE_YAML: true + VALIDATE_BIOME_LINT: true + VALIDATE_BIOME_FORMAT: true GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..115edc8 --- /dev/null +++ b/biome.json @@ -0,0 +1,17 @@ +{ + "$schema": "https://biomejs.dev/schemas/2.3.13/schema.json", + "files": { + "includes": ["**/*.json"] + }, + "linter": { + "enabled": true, + "rules": { + "recommended": true + } + }, + "formatter": { + "enabled": true, + "indentStyle": "space", + "indentWidth": 2 + } +}