oxc/.github/codecov.yml
Boshen ceeee5909b
Remove HIR (#917)
closes #273
closes #814

HIR is removed from this PR, with the minifier being commented out.

HIR is a wonderful idea for compiling to lower languages, but after
sitting on it for a few months I found that it only adds confusion and
uncertainties to both myself and future contributors.

It also adds too much burden to maintainers if we plan to support more
downstream tools.

1 AST is the only way.
2023-09-15 23:48:32 +08:00

26 lines
608 B
YAML

coverage:
status:
project:
default:
informational: true
patch:
default:
informational: true
changes:
default:
informational: true
ignore:
- "**/main.rs"
- "**/examples"
- "tasks"
- "editor"
- "crates/oxc_ast/src/visit_mut.rs"
- "crates/oxc_ast/src/ast_kind.rs"
- "crates/oxc_ast/src/span.rs"
- "crates/oxc_wasm" # Remove this once wasm is completed
- "crates/oxc_napi"
- "crates/oxc_parser/fuzz"
- "crates/oxc_diagnostics"
- "crates/oxc_type_synthesis"
- "crates/oxc_query" # Not aiming for test coverage right now with @u9g