eslint-config-gits 5.0.7 → 5.0.8
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 +8 -0
- package/index.mjs +1 -3
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [5.0.8](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v5.0.7...v5.0.8) (2024-08-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* specify eslint/compat as peerDependency ([cbb271a](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/cbb271a6455e74bef36fcee4a1283e191f3d31cb))
|
|
7
|
+
* Static include plugin name ([25d5594](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/25d55946ef1fd7d7999a9e46b1894751e7bf255b))
|
|
8
|
+
|
|
1
9
|
## [5.0.7](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v5.0.6...v5.0.7) (2024-08-22)
|
|
2
10
|
|
|
3
11
|
|
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.
|
|
3
|
+
"version": "5.0.8",
|
|
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,6 +14,7 @@
|
|
|
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",
|