@yasainet/eslint 0.0.43 → 0.0.44

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yasainet/eslint",
3
- "version": "0.0.43",
3
+ "version": "0.0.44",
4
4
  "description": "ESLint",
5
5
  "type": "module",
6
6
  "exports": {
@@ -12,6 +12,12 @@ const nextEntryPointConfigs = createEntryPointConfigs(
12
12
 
13
13
  /** Next.js ESLint flat config entry point. */
14
14
  export const eslintConfig = [
15
+ // shadcn/ui generated components live directly under `src/components/shared/ui/`.
16
+ // Files in `custom/` are user-authored and remain linted.
17
+ {
18
+ name: "rules/ignore-shadcn-ui",
19
+ ignores: ["src/components/shared/ui/*.{ts,tsx}"],
20
+ },
15
21
  ...createCommonConfigs("src/features"),
16
22
  ...libBoundaryConfigs,
17
23
  ...pageBoundaryConfigs,