- Add dev dependencies
npm i -D oxlint @ezpaarse-project/oxlint-config- Add base configuration to
extends
You'll need to have the configuration file created.
You can refer to documentation
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"extends": ["./node_modules/@ezpaarse-project/oxlint-config/js.config.jsonc"]
}import oxlintConfig from "@ezpaarse-project/oxlint-config/js";
export default defineConfig({
extends: [oxlintConfig],
});- Add dev dependencies
npm i -D oxlint @ezpaarse-project/oxlint-config- Add base configuration to
extends
You'll need to have the configuration file created.
You can refer to documentation
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"extends": ["./node_modules/@ezpaarse-project/oxlint-config/ts.config.jsonc"]
}import oxlintConfig from "@ezpaarse-project/oxlint-config/ts";
export default defineConfig({
extends: [oxlintConfig],
});