@yasainet/eslint 0.0.4 → 0.0.5

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.4",
3
+ "version": "0.0.5",
4
4
  "description": "ESLint",
5
5
  "type": "module",
6
6
  "exports": {
@@ -117,7 +117,12 @@ export const libBoundaryConfigs = [
117
117
  {
118
118
  name: "imports/lib-boundary",
119
119
  files: ["src/**/*.{ts,tsx}"],
120
- ignores: ["src/lib/**", "src/proxy.ts", "src/app/sitemap.ts"],
120
+ ignores: [
121
+ "src/lib/**",
122
+ "src/proxy.ts",
123
+ "src/app/sitemap.ts",
124
+ "src/features/**/repositories/**",
125
+ ],
121
126
  rules: {
122
127
  "no-restricted-imports": ["error", { patterns: LIB_BOUNDARY_PATTERNS }],
123
128
  },