@becklyn/eslint 1.2.1 → 1.2.2

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @becklyn/eslint@1.2.1 test
2
+ > @becklyn/eslint@1.2.2 test
3
3
  > echo "Error: no test specified" && exit 0
4
4
 
5
5
  Error: no test specified
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @becklyn/eslint
2
2
 
3
+ ## 1.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 9788e08: Update packages and ignore .next and .turbo by default
8
+
3
9
  ## 1.2.1
4
10
 
5
11
  ### Patch Changes
package/base.js CHANGED
@@ -43,6 +43,6 @@ export const config = [
43
43
  },
44
44
  },
45
45
  {
46
- ignores: ["dist/**"],
46
+ ignores: ["dist/**", ".next/**", ".turbo/**"],
47
47
  },
48
48
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@becklyn/eslint",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "license": "MIT",
5
5
  "description": "the eslint-config base we use for our TypeScript apps",
6
6
  "homepage": "https://github.com/Becklyn-Studios/ts-libs/tree/main/packages/eslint",
@@ -18,17 +18,17 @@
18
18
  "test": "echo \"Error: no test specified\" && exit 0"
19
19
  },
20
20
  "dependencies": {
21
- "@eslint/js": "^9.39.1",
21
+ "@eslint/js": "^9.39.2",
22
22
  "@limegrass/eslint-plugin-import-alias": "^1.6.0",
23
- "@next/eslint-plugin-next": "^15.5.6",
24
- "eslint": "^9.39.1",
23
+ "@next/eslint-plugin-next": "^16.0.10",
24
+ "eslint": "^9.39.2",
25
25
  "eslint-config-prettier": "^10.1.8",
26
26
  "eslint-plugin-only-warn": "^1.1.0",
27
27
  "eslint-plugin-react": "^7.37.5",
28
- "eslint-plugin-react-hooks": "^5.2.0",
28
+ "eslint-plugin-react-hooks": "^7.0.1",
29
29
  "eslint-plugin-unused-imports": "^4.3.0",
30
30
  "globals": "^16.5.0",
31
31
  "typescript": "^5.9.3",
32
- "typescript-eslint": "^8.48.0"
32
+ "typescript-eslint": "^8.50.0"
33
33
  }
34
34
  }