mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
* chore: update templates * fix(cli): parse pnpm workspace packages * chore(changeset): add shadcn patch * chore(changeset): update description * ci(templates): validate bun and npx init * ci(templates): expand package manager validation * ci(templates): parallelize validation * ci(templates): allow yarn template lockfiles * fix(cli): allow yarn template installs in ci
21 lines
428 B
JavaScript
21 lines
428 B
JavaScript
// @ts-check
|
|
|
|
import { tanstackConfig } from "@tanstack/eslint-config"
|
|
|
|
export default [
|
|
...tanstackConfig,
|
|
{
|
|
rules: {
|
|
"import/no-cycle": "off",
|
|
"import/order": "off",
|
|
"sort-imports": "off",
|
|
"@typescript-eslint/array-type": "off",
|
|
"@typescript-eslint/require-await": "off",
|
|
"pnpm/json-enforce-catalog": "off",
|
|
},
|
|
},
|
|
{
|
|
ignores: ["eslint.config.js", ".prettierrc"],
|
|
},
|
|
]
|