© 2026 Hedgehog Software, LLC
.eslintrc.cjs
process.env.ESLINT_TSCONFIG = 'tsconfig.json' /** @type {import("eslint").Linter.Config} */ const config = { root: true, extends: '@antfu', } module.exports = config
rules
const config = { root: true, extends: '@antfu', rules: { quotes: ['error', 'double'], }, }