eslint-config-ganintegrity 6.0.0 → 6.1.1
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/.eslintrc.json +1 -3
- package/.gitlab-ci.yml +2 -2
- package/.nvmrc +1 -1
- package/CHANGELOG.md +19 -0
- package/package.json +6 -6
package/.eslintrc.json
CHANGED
|
@@ -27,9 +27,7 @@
|
|
|
27
27
|
"exports": "always-multiline",
|
|
28
28
|
"functions": "never"
|
|
29
29
|
}],
|
|
30
|
-
"sort-imports":
|
|
31
|
-
"memberSyntaxSortOrder": ["all", "multiple", "single", "none"]
|
|
32
|
-
}],
|
|
30
|
+
"sort-imports": "off",
|
|
33
31
|
"dot-notation": "warn",
|
|
34
32
|
"no-unused-vars": ["error", { "vars": "all", "args": "after-used", "ignoreRestSiblings": true }],
|
|
35
33
|
"prefer-const": "error",
|
package/.gitlab-ci.yml
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
image: node:
|
|
1
|
+
image: node:18.19
|
|
2
2
|
|
|
3
3
|
cache:
|
|
4
4
|
paths:
|
|
@@ -9,7 +9,7 @@ stages:
|
|
|
9
9
|
- publish
|
|
10
10
|
|
|
11
11
|
before_script:
|
|
12
|
-
- echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}"
|
|
12
|
+
- echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> .npmrc
|
|
13
13
|
- npm install
|
|
14
14
|
|
|
15
15
|
test:
|
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
18.19.0
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## [6.1.1](https://gitlab.com/ganintegrity/eslint-config-ganintegrity/compare/v6.1.0...v6.1.1) (2026-03-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* disable sort-imports rule ([df4d29a](https://gitlab.com/ganintegrity/eslint-config-ganintegrity/commit/df4d29a25f67881da10370b286159014731dd506))
|
|
7
|
+
|
|
8
|
+
# [6.1.0](https://gitlab.com/ganintegrity/eslint-config-ganintegrity/compare/v6.0.0...v6.1.0) (2023-12-14)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* package-lock ([c12ea33](https://gitlab.com/ganintegrity/eslint-config-ganintegrity/commit/c12ea33e9dbfacfe789ac813f0c28b1240026fd3))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* update semantic release ([4bb131d](https://gitlab.com/ganintegrity/eslint-config-ganintegrity/commit/4bb131d8354b864ed8750716f11241fe29ee59d0))
|
|
19
|
+
|
|
1
20
|
# [6.0.0](https://gitlab.com/ganintegrity/eslint-config-ganintegrity/compare/v5.1.0...v6.0.0) (2023-12-14)
|
|
2
21
|
|
|
3
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-ganintegrity",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.1.1",
|
|
4
4
|
"description": "eslint configs with prettier integration",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"dependencies": {
|
|
@@ -19,15 +19,15 @@
|
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@commitlint/cli": "8.1.0",
|
|
21
21
|
"@ganintegrity/commitlint-config": "2.0.0",
|
|
22
|
-
"@semantic-release/changelog": "
|
|
23
|
-
"@semantic-release/git": "
|
|
24
|
-
"@semantic-release/gitlab": "
|
|
25
|
-
"@semantic-release/npm": "
|
|
22
|
+
"@semantic-release/changelog": "6.0.3",
|
|
23
|
+
"@semantic-release/git": "10.0.1",
|
|
24
|
+
"@semantic-release/gitlab": "12.0.3",
|
|
25
|
+
"@semantic-release/npm": "10.0.4",
|
|
26
26
|
"eslint": "8.36.0",
|
|
27
27
|
"eslint-plugin-n": "^15.7.0",
|
|
28
28
|
"husky": "2.7.0",
|
|
29
29
|
"prettier": "2.8.4",
|
|
30
|
-
"semantic-release": "
|
|
30
|
+
"semantic-release": "21.0.7"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"test": "echo \"Error: no test specified\" && exit 1",
|