Files
orca/docs/site/eslint.config.mjs
T
Neil 6aba202d5e feat(docs): publish OSS docs with stable releases
Publish the standalone docs site under docs/site and deploy it on stable desktop releases.
2026-08-30 23:51:25 -07:00

11 lines
183 B
JavaScript

import nextConfig from 'eslint-config-next'
const config = [
...nextConfig,
{
ignores: ['.source/**', 'node_modules/**', 'tsconfig.tsbuildinfo']
}
]
export default config