Skip to content

Commit

Permalink
chore: update issue config
Browse files Browse the repository at this point in the history
  • Loading branch information
arendjr committed Mar 6, 2025
1 parent 053bfa1 commit 1a8ff5c
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ contact_links:
- name: 🧩 IntelliJ extension issues
url: https://github.com/biomejs/biome-intellij
about: File an issue in the biome-intellij repository
- name: ✅ Linter rule requests
url: https://github.com/biomejs/biome/discussions/3
about: Please add a comment to the discussion named "Linter rules from other sources"
- name: ✅ Linter rule suggestions
url: https://github.com/biomejs/biome/discussions/new?category=rule-suggestion
about: Please create a discussion for rule suggestions
- name: 💡 Feature requests
url: https://github.com/biomejs/biome/discussions/new
about: Please use a new Github discussion to propose ideas of feature requests
Expand Down
4 changes: 4 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ A-Project:
- any-glob-to-any-file:
- crates/biome_service/**
- crates/biome_configuration/**
- crates/biome_dependency_graph/**
- crates/biome_package/**
- crates/biome_plugin_loader/**
- crates/biome_project_layout/**

A-Linter:
- changed-files:
Expand Down
6 changes: 6 additions & 0 deletions packages/@biomejs/js-api/src/bar.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { foo } from "./foo";

export function bar(bla: number) {
bla = 1;
foo();
}
6 changes: 6 additions & 0 deletions packages/@biomejs/js-api/src/foo.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { bar } from "./bar";

export function foo() {
const len = foo!.length;
bar(3);
}

0 comments on commit 1a8ff5c

Please sign in to comment.