Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions linters/biome/plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ tools:
runtime: node
package: "@biomejs/biome"
shims: [biome]
known_good_version: 1.9.4
known_good_version: 2.0.5
lint:
definitions:
# Successor to the rome linter+formatter
Expand All @@ -15,6 +15,7 @@ lint:
- astro
- css
- graphql
- html
- javascript
- json
- typescript
Expand All @@ -25,29 +26,29 @@ lint:
parse_regex:
' *(?P<path>.*?):(?P<line>\d+):(?P<col>\d+) (?P<code>[^ ]+)(?:[^×]*\n).*×
(?P<message>.*)\n'
run: biome check ${target}
run: biome check --config-path=${workspace}/biome.jsonc ${target}
run_from: ${root_or_parent_with(biome.jsonc)}
success_codes: [0, 1]
batch: true
cache_results: true
cache_results: false
read_output_from: stderr
- name: fmt
output: rewrite
run: biome check --fix "${target}"
success_codes: [0, 1]
run: biome format --config-path=${workspace}/biome.jsonc --write ${target}
run_from: ${root_or_parent_with(biome.jsonc)}
success_codes: [0]
batch: true
cache_results: true
cache_results: false
formatter: true
in_place: true
tools: [biome]
suggest_if: config_present
direct_configs:
- biome.json
- biome.jsonc
- rome.json # For backwards compatibility with rome
affects_cache:
- package.json
- .editorconfig # Undocumented config file
known_good_version: 1.9.4
known_good_version: 2.0.5
version_command:
parse_regex: biome CLI version ${semver}
run: biome --version
39 changes: 0 additions & 39 deletions linters/biome/test_data/biome_v1.9.4_error.check.shot

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,7 @@ exports[`Testing linter biome test basic_check 1`] = `
"level": "LEVEL_HIGH",
"line": "13",
"linter": "biome",
"message": "This block statement doesn't serve any purpose and can be safely removed.",
"targetType": "typescript",
},
{
"code": "lint/style/useEnumInitializers",
"column": "6",
"file": "test_data/basic_check.in.ts",
"issueClass": "ISSUE_CLASS_EXISTING",
"level": "LEVEL_HIGH",
"line": "4",
"linter": "biome",
"message": "This enum declaration contains members that are implicitly initialized.",
"message": "Formatter would have printed the following content:",
"targetType": "typescript",
},
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ exports[`Testing formatter biome test basic_fmt 1`] = `
const barfoo = () => {};

enum Bar {
Baz = 0,
Baz,
}

const foo = (bar: Bar) => {
Expand Down
Loading