oxc/tasks
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
..
benchmark feat(linter): add jsx-a11y settings (#1668) 2023-12-16 13:45:14 +08:00
common chore(vscode): improve dx (#1528) 2023-11-24 15:05:27 +08:00
coverage ci: fix codecov not executing on conformance tests 2023-12-16 13:38:40 +08:00
minsize refactor(rust): move to workspace lint table (#1444) 2023-11-20 14:38:10 +08:00
prettier_conformance feat(prettier): add print_binaryish_expressions (#1664) 2023-12-13 22:52:53 +08:00
rulegen refactor(rust): move to workspace lint table (#1444) 2023-11-20 14:38:10 +08:00
transform_conformance ci: fix codecov not executing on conformance tests 2023-12-16 13:38:40 +08:00
libs.txt fix(benchmark): use different data sets for benchmark and minifier test 2023-09-02 20:56:45 +08:00