mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
14 lines
335 B
JavaScript
14 lines
335 B
JavaScript
// Root-level ESLint config for a Turborepo workspace.
|
|
// App/package lint rules live in each workspace's eslint.config.js.
|
|
/** @type {import("eslint").Linter.Config} */
|
|
module.exports = {
|
|
root: true,
|
|
ignorePatterns: [
|
|
"**/node_modules/**",
|
|
"**/.next/**",
|
|
"**/dist/**",
|
|
"**/.turbo/**",
|
|
"**/coverage/**",
|
|
],
|
|
}
|