a programming education platform
www.hypercommit.com
education
1// Root-level ESLint config for a Turborepo workspace.
2// App/package lint rules live in each workspace's eslint.config.js.
3/** @type {import("eslint").Linter.Config} */
4module.exports = {
5 root: true,
6 ignorePatterns: [
7 "**/node_modules/**",
8 "**/.next/**",
9 "**/dist/**",
10 "**/.turbo/**",
11 "**/coverage/**",
12 ],
13}