oxc/editors/vscode
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
..
client feat(vscode): use icon to represent enabled status (#1675) 2023-12-14 20:59:26 +08:00
server feat(linter): add jsx-a11y settings (#1668) 2023-12-16 13:45:14 +08:00
.prettierignore chore: format typescript and json file in editors/vscode (#1667) 2023-12-14 02:01:24 +08:00
.prettierrc chore: format typescript and json file in editors/vscode (#1667) 2023-12-14 02:01:24 +08:00
.vscodeignore chore: mv dir editor/vscode to editors/vscode (#1203) 2023-11-09 21:13:11 +08:00
LICENSE chore: mv dir editor/vscode to editors/vscode (#1203) 2023-11-09 21:13:11 +08:00
package.json feat: add option to control enable/disable oxc linter (#1665) 2023-12-14 12:45:34 +08:00
pnpm-lock.yaml chore: format typescript and json file in editors/vscode (#1667) 2023-12-14 02:01:24 +08:00
README.md chore: mv dir editor/vscode to editors/vscode (#1203) 2023-11-09 21:13:11 +08:00
tsconfig.json chore: format typescript and json file in editors/vscode (#1667) 2023-12-14 02:01:24 +08:00

Oxc

The Oxidation Compiler is creating a suite of high-performance tools for JavaScript and TypeScript.

Oxlint

This is the linter for oxc.