eslint-config-gits 5.0.7 → 5.0.9

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
@@ -1,3 +1,18 @@
1
+ ## [5.0.9](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v5.0.8...v5.0.9) (2024-08-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Declare globals peer dependency with fixed json error ([11499e1](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/11499e11797be09ab371bd9514145c2711d845ff))
7
+
8
+ ## [5.0.8](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v5.0.7...v5.0.8) (2024-08-22)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * specify eslint/compat as peerDependency ([cbb271a](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/cbb271a6455e74bef36fcee4a1283e191f3d31cb))
14
+ * Static include plugin name ([25d5594](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/25d55946ef1fd7d7999a9e46b1894751e7bf255b))
15
+
1
16
  ## [5.0.7](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v5.0.6...v5.0.7) (2024-08-22)
2
17
 
3
18
 
package/index.mjs CHANGED
@@ -8,7 +8,6 @@ import path from "node:path";
8
8
  import {fileURLToPath} from "node:url";
9
9
  import js from "@eslint/js";
10
10
  import {FlatCompat} from "@eslint/eslintrc";
11
- import {name, version} from './package.json';
12
11
  import globals from 'globals';
13
12
 
14
13
  const __filename = fileURLToPath(import.meta.url);
@@ -21,8 +20,7 @@ const compat = new FlatCompat({
21
20
 
22
21
  const plugin = {
23
22
  meta: {
24
- name,
25
- version
23
+ name: 'eslint-config-gits',
26
24
  },
27
25
  configs: {
28
26
  recommended: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-gits",
3
- "version": "5.0.7",
3
+ "version": "5.0.9",
4
4
  "description": "EsLint preset for Geenen IT-Systeme",
5
5
  "repository": "https://gitlab.com/geenen-it-systeme/eslint-preset",
6
6
  "main": "index.mjs",
@@ -14,12 +14,14 @@
14
14
  "author": "",
15
15
  "license": "ISC",
16
16
  "peerDependencies": {
17
+ "@eslint/compat": "^1",
17
18
  "@typescript-eslint/eslint-plugin": "^8",
18
19
  "eslint": "^9",
19
20
  "eslint-plugin-prettier": "^5",
20
21
  "eslint-plugin-react": "^7",
21
22
  "eslint-plugin-react-hooks": "^5.1.0-rc-1d989965-20240821",
22
23
  "eslint-plugin-storybook": "^0",
24
+ "globals": "^15",
23
25
  "prettier": "^3"
24
26
  },
25
27
  "devDependencies": {