mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
* chore: update templates * ci(templates): validate generated starters * fix * fix(templates): support pnpm 9 workspace config * ci(templates): test supported pnpm version
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"],
|
|
},
|
|
]
|