Files
zopu-code/repos/effect/.oxlintrc.json

27 lines
732 B
JSON

{
"$schema": "https://raw.githubusercontent.com/oxc-project/oxc/main/npm/oxlint/configuration_schema.json",
"extends": ["./packages/tools/oxc/oxlintrc.json"],
"ignorePatterns": [
"LLMS.md",
"**/dist",
"**/build",
"**/docs",
"**/.tsbuildinfo",
"packages/effect/typeperf/**/*",
"packages/**/CHANGELOG.md",
"!scratchpad/**/*",
".agents/**/*",
".context/**/*",
".specs/**/*"
],
"jsPlugins": ["@effect/oxc/oxlint"],
"overrides": [{
"files": ["**/{test,typetest,examples,ai-docs,benchmark,bundle,scripts,scratchpad}/**"],
"rules": {
"effect/no-bigint-literals": "off",
"eslint/no-console": "off",
"effect/no-import-from-barrel-package": "off"
}
}]
}