oxc/tasks/benchmark
msdlisper 6a90cd4af4
feat(linter): add jsx-a11y settings (#1668)
When we developed linter for #1141 , we needed to configure some
settings for `jsx-a11y`, which was not supported before, but I am trying
to support it now.
like this:
```
fn config() -> serde_json::Value {
    serde_json::json!([2,{
        "ignoreNonDOM": true
    }])
}

fn settings() -> serde_json::Value {
    serde_json::json!({
        "jsx-a11y": {
            "components": {
                "Button": "button",
            }
        }
    })
}

let pass = vec![
    ("<Button />", Some(config()), Some(settings())),
];
```
2023-12-16 13:45:14 +08:00
..
benches feat(linter): add jsx-a11y settings (#1668) 2023-12-16 13:45:14 +08:00
src refactor(benchmark): use codspeed for all benchmarks (#839) 2023-09-02 20:35:48 +08:00
Cargo.toml chore: move oxc_resolver to https://github.com/oxc-project/oxc_resolver (#1636) 2023-12-06 18:52:59 +08:00
README.md s/web-infra-dev/oxc-project 2023-11-10 14:30:18 +08:00