mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-02 20:18:35 +00:00
32 lines
843 B
JSON
32 lines
843 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/oxc-project/oxc/main/npm/oxlint/configuration_schema.json",
|
|
"categories": {
|
|
"correctness": "error"
|
|
},
|
|
"plugins": ["react", "typescript"],
|
|
"ignorePatterns": [
|
|
".scratch/",
|
|
"dist/",
|
|
"coverage/",
|
|
"node_modules/",
|
|
"playground/",
|
|
"packages/producer/tests/**/src/vendor/**",
|
|
"registry/blocks/**/lib/*.iife.js",
|
|
"chrome/"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"packages/cli/src/capture/**/*.ts",
|
|
"packages/cli/src/registry/**/*.ts",
|
|
"packages/cli/src/templates/**/*.ts",
|
|
"packages/cli/src/telemetry/**/*.ts"
|
|
],
|
|
"excludeFiles": ["**/*.test.ts", "**/*.test.tsx", "packages/cli/src/telemetry/feedback.ts"],
|
|
"rules": {
|
|
"no-console": ["error", { "allow": ["error", "warn"] }]
|
|
}
|
|
}
|
|
]
|
|
}
|