11 lines
207 B
TypeScript
11 lines
207 B
TypeScript
import gcchConfig from "@gcch/configuration-oxlint";
|
|
import { OxlintConfig } from "oxlint";
|
|
|
|
const config: OxlintConfig = {
|
|
...gcchConfig,
|
|
globals: {
|
|
Bun: "readonly",
|
|
},
|
|
};
|
|
|
|
export default config;
|