@saasmakers/eslint 0.1.66 → 0.1.67

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/dist/index.cjs CHANGED
@@ -194,7 +194,7 @@ const rule$9 = {
194
194
  type: "suggestion"
195
195
  },
196
196
  create(context) {
197
- if (!context.filename.endsWith(".spec.ts")) {
197
+ if (!context.filename.endsWith(".spec.ts") && !context.filename.endsWith(".test.ts")) {
198
198
  return {};
199
199
  }
200
200
  function handleTestGroup(node) {
package/dist/index.mjs CHANGED
@@ -192,7 +192,7 @@ const rule$9 = {
192
192
  type: "suggestion"
193
193
  },
194
194
  create(context) {
195
- if (!context.filename.endsWith(".spec.ts")) {
195
+ if (!context.filename.endsWith(".spec.ts") && !context.filename.endsWith(".test.ts")) {
196
196
  return {};
197
197
  }
198
198
  function handleTestGroup(node) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saasmakers/eslint",
3
3
  "type": "module",
4
- "version": "0.1.66",
4
+ "version": "0.1.67",
5
5
  "private": false,
6
6
  "description": "Shared ESLint config and rules for SaaS Makers projects",
7
7
  "author": "SaaS Makers",