oxc/crates
msdlisper b2a62ddaa2
fix(linter): error rule config in media_has_caption (#1864)
fix error rule config
```
serde_json::json!({
    "audio": [ "Audio" ],
    "video": [ "Video" ],
    "track": [ "Track" ],
})
```
to
```
serde_json::json!([{
    "audio": [ "Audio" ],
    "video": [ "Video" ],
    "track": [ "Track" ],
}])
```

based on the eslint docs, if a rule configuration is passed, it has to
look like `<RULE NAME>: [<SEVERITY>, config]`
2023-12-31 10:55:25 +00:00
..
oxc Release crates v0.4.0 2023-12-08 17:20:37 +08:00
oxc_allocator Release crates v0.4.0 2023-12-08 17:20:37 +08:00
oxc_ast feat(linter): no-irregular-whitespace rule (#1835) 2023-12-31 12:05:38 +08:00
oxc_cli fix(cli) skip run lint when --rules is passed (#1747) 2023-12-20 12:24:45 +08:00
oxc_codegen Release crates v0.4.0 2023-12-08 17:20:37 +08:00
oxc_diagnostics chore: upgrade rustc toolchain to stable 1.75.0 (#1853) 2023-12-29 12:20:51 +08:00
oxc_formatter Release crates v0.4.0 2023-12-08 17:20:37 +08:00
oxc_index Release crates v0.4.0 2023-12-08 17:20:37 +08:00
oxc_js_regex
oxc_language_server refactor(linter): extract common code (#1848) 2023-12-28 14:43:47 +08:00
oxc_linter fix(linter): error rule config in media_has_caption (#1864) 2023-12-31 10:55:25 +00:00
oxc_linter_plugin chore(deps): bump the dependencies group with 5 updates (#1808) 2023-12-25 15:17:47 +08:00
oxc_macros feat(linter): add a perf category (#1625) 2023-12-04 17:31:34 +08:00
oxc_minifier chore: upgrade rustc toolchain to stable 1.75.0 (#1853) 2023-12-29 12:20:51 +08:00
oxc_parser feat(linter): no-irregular-whitespace rule (#1835) 2023-12-31 12:05:38 +08:00
oxc_prettier feat(linter): no-irregular-whitespace rule (#1835) 2023-12-31 12:05:38 +08:00
oxc_query feat(query): Add is_getter, is_setter, is_constructor to all Function implementors (#1526) 2023-11-27 12:22:41 +08:00
oxc_semantic chore: upgrade rustc toolchain to stable 1.75.0 (#1853) 2023-12-29 12:20:51 +08:00
oxc_span Release crates v0.4.0 2023-12-08 17:20:37 +08:00
oxc_syntax feat(semantic): improve check super implementation, reduce access nodes (#1827) 2023-12-27 22:36:28 +08:00
oxc_transformer chore: upgrade rustc toolchain to stable 1.75.0 (#1853) 2023-12-29 12:20:51 +08:00
oxc_type_synthesis
oxc_wasm feat(linter): add jsx-a11y settings (#1668) 2023-12-16 13:45:14 +08:00