oxc/.github/labeler.yml
Boshen 21505e885c refactor(cli): move crates/oxc_cli to apps/oxlint (#3413)
We need to split the cli crate up to reduce dependencies,
the current cli crate is pulling in `oxc_prettier`, which is redundant
for the linter.
2024-05-26 05:00:30 +00:00

39 lines
880 B
YAML

A-ast:
- changed-files:
- any-glob-to-any-file: ['crates/oxc_ast/**']
A-cli:
- changed-files:
- any-glob-to-any-file: ['apps/oxlint/**']
A-prettier:
- changed-files:
- any-glob-to-any-file: ['crates/oxc_prettier/**', 'tasks/prettier_conformance/**']
A-transformer:
- changed-files:
- any-glob-to-any-file: ['crates/oxc_transformer/**', 'tasks/transform_conformance/**']
A-linter:
- changed-files:
- any-glob-to-any-file: ['crates/oxc_linter/**']
A-minifier:
- changed-files:
- any-glob-to-any-file: ['crates/oxc_minifier/**']
A-parser:
- changed-files:
- any-glob-to-any-file: ['crates/oxc_parser/**']
A-codegen:
- changed-files:
- any-glob-to-any-file: ['crates/oxc_codegen/**']
A-semantic:
- changed-files:
- any-glob-to-any-file: ['crates/oxc_semantic/**']
A-type-checking:
- changed-files:
- any-glob-to-any-file: ['crates/oxc_type_synthesis/**']