@foray1010/eslint-config 16.0.1 → 16.1.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [16.1.0](https://github.com/foray1010/common-presets/compare/@foray1010/eslint-config@16.0.1...@foray1010/eslint-config@16.1.0) (2026-01-24)
7
+
8
+ ### Features
9
+
10
+ - **deps:** update globals to v17 ([d0b3bd9](https://github.com/foray1010/common-presets/commit/d0b3bd9707098a9e7a95bd0e9e250f417fe33494))
11
+
12
+ ### Bug Fixes
13
+
14
+ - **deps:** update eslint-plugin-regexp to v3 ([b4e82bb](https://github.com/foray1010/common-presets/commit/b4e82bb23fa2280dbf8c95e92b0d86ee9d420b8a))
15
+
6
16
  ## [16.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/eslint-config@16.0.0...@foray1010/eslint-config@16.0.1) (2025-10-31)
7
17
 
8
18
  ### Bug Fixes
package/bases/base.mjs CHANGED
@@ -1,6 +1,5 @@
1
1
  /* eslint-disable import-x/extensions */
2
2
  import js from '@eslint/js'
3
- // @ts-expect-error - no official types
4
3
  import eslintPluginEslintCommentsConfigs from '@eslint-community/eslint-plugin-eslint-comments/configs'
5
4
  import { hasDep, isESM } from '@foray1010/common-presets-utils'
6
5
  import { defineConfig } from 'eslint/config'
@@ -261,7 +260,7 @@ const baseConfig = defineConfig(
261
260
  },
262
261
  },
263
262
  {
264
- extends: [eslintPluginRegexp.configs['flat/recommended']],
263
+ extends: [eslintPluginRegexp.configs.recommended],
265
264
  rules: {
266
265
  // enable regexp strict mode (use `v` flag instead when it is widely supported)
267
266
  'regexp/require-unicode-regexp': 'error',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@foray1010/eslint-config",
4
- "version": "16.0.1",
4
+ "version": "16.1.0",
5
5
  "homepage": "https://github.com/foray1010/common-presets/tree/master/packages/eslint-config#readme",
6
6
  "bugs": "https://github.com/foray1010/common-presets/issues",
7
7
  "repository": {
@@ -35,11 +35,11 @@
35
35
  "eslint-plugin-prettier": "^5.5.4",
36
36
  "eslint-plugin-react": "^7.37.5",
37
37
  "eslint-plugin-react-hooks": "^7.0.1",
38
- "eslint-plugin-regexp": "^2.10.0",
38
+ "eslint-plugin-regexp": "^3.0.0",
39
39
  "eslint-plugin-simple-import-sort": "^12.1.1",
40
40
  "eslint-plugin-testing-library": "^7.13.3",
41
41
  "eslint-plugin-unicorn": "^62.0.0",
42
- "globals": "^16.4.0",
42
+ "globals": "^17.1.0",
43
43
  "typescript-eslint": "^8.46.2"
44
44
  },
45
45
  "devDependencies": {
@@ -65,5 +65,5 @@
65
65
  "publishConfig": {
66
66
  "access": "public"
67
67
  },
68
- "gitHead": "307c2222f0e9ffc56f275a7a33496260d888643d"
68
+ "gitHead": "b7ba7d52368d2b0f77712639ffd3ed2a37b31d23"
69
69
  }