@skilbjo/config-rc 1.0.33 → 1.0.35
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/.github/dependabot.yml +0 -4
- package/.github/workflows/pr.yml +1 -1
- package/.github/workflows/release.yml +1 -1
- package/CHANGELOG.md +18 -0
- package/index.js +5 -0
- package/package.json +11 -10
package/.github/dependabot.yml
CHANGED
|
@@ -26,10 +26,6 @@ updates:
|
|
|
26
26
|
- dependency-name: '@aws-sdk/util-dynamodb'
|
|
27
27
|
- dependency-name: '@commitlint/cli'
|
|
28
28
|
- dependency-name: '@commitlint/config-angular'
|
|
29
|
-
|
|
30
|
-
- dependency-name: eslint
|
|
31
|
-
- dependency-name: eslint-config-prettier
|
|
32
|
-
- dependency-name: eslint-config-typescript
|
|
33
29
|
versioning-strategy: increase
|
|
34
30
|
open-pull-requests-limit: 15
|
|
35
31
|
commit-message:
|
package/.github/workflows/pr.yml
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## [1.0.35](https://github.com/skilbjo/config-rc/compare/v1.0.34...v1.0.35) (2026-01-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* remove stylistic/indent ([9a82c05](https://github.com/skilbjo/config-rc/commit/9a82c0599883b0ee2358aceac87341ab38a727fa))
|
|
7
|
+
|
|
8
|
+
## [1.0.34](https://github.com/skilbjo/config-rc/compare/v1.0.33...v1.0.34) (2026-01-22)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps-dev:** bump @types/node from 25.0.9 to 25.0.10 ([#471](https://github.com/skilbjo/config-rc/issues/471)) ([647b4e5](https://github.com/skilbjo/config-rc/commit/647b4e537a9118eabfbf0e3bc28c2f09b42a2300))
|
|
14
|
+
* **deps:** bump actions/checkout from 5 to 6 ([#429](https://github.com/skilbjo/config-rc/issues/429)) ([18484e9](https://github.com/skilbjo/config-rc/commit/18484e9c5ae09d92f72d9b75217dfb9ed7932712))
|
|
15
|
+
* **deps:** bump eslint-plugin-perfectionist from 4.15.1 to 5.3.1 ([#472](https://github.com/skilbjo/config-rc/issues/472)) ([1c86d4d](https://github.com/skilbjo/config-rc/commit/1c86d4d3bc20e6ed8e6f65eaf49f0d1a2e3c9c04))
|
|
16
|
+
* **deps:** bump prettier from 3.8.0 to 3.8.1 ([#470](https://github.com/skilbjo/config-rc/issues/470)) ([0e9f723](https://github.com/skilbjo/config-rc/commit/0e9f723e11e3fd31e7bbf68b0261c241727b1386))
|
|
17
|
+
* **lint:** no newlines, no tabs ([83ca165](https://github.com/skilbjo/config-rc/commit/83ca1652d41b12f559dd9922a8e59d37062ff7b0))
|
|
18
|
+
|
|
1
19
|
## [1.0.33](https://github.com/skilbjo/config-rc/compare/v1.0.32...v1.0.33) (2026-01-22)
|
|
2
20
|
|
|
3
21
|
|
package/index.js
CHANGED
|
@@ -7,6 +7,7 @@ const jestPlugin = require('eslint-plugin-jest');
|
|
|
7
7
|
const prettierPlugin = require('eslint-plugin-prettier');
|
|
8
8
|
const securityPlugin = require('eslint-plugin-security');
|
|
9
9
|
const perfectionistPlugin = require('eslint-plugin-perfectionist');
|
|
10
|
+
const stylisticPlugin = require('@stylistic/eslint-plugin');
|
|
10
11
|
const globals = require('globals');
|
|
11
12
|
|
|
12
13
|
const config = tseslint.config(
|
|
@@ -33,6 +34,7 @@ const config = tseslint.config(
|
|
|
33
34
|
perfectionist: perfectionistPlugin,
|
|
34
35
|
jest: jestPlugin,
|
|
35
36
|
'@typescript-eslint': tseslint.plugin,
|
|
37
|
+
'@stylistic': stylisticPlugin,
|
|
36
38
|
},
|
|
37
39
|
rules: {
|
|
38
40
|
...eslint.configs.recommended.rules,
|
|
@@ -58,6 +60,8 @@ const config = tseslint.config(
|
|
|
58
60
|
'n/no-unsupported-features/es-syntax': 'off',
|
|
59
61
|
'n/shebang': 'off',
|
|
60
62
|
'no-multiple-empty-lines': [2, { max: 1, maxEOF: 0 }],
|
|
63
|
+
'@stylistic/eol-last': ['error', 'always'],
|
|
64
|
+
'@stylistic/no-trailing-spaces': 'error',
|
|
61
65
|
'perfectionist/sort-exports': 'off',
|
|
62
66
|
'perfectionist/sort-imports': 'off',
|
|
63
67
|
'prettier/prettier': [
|
|
@@ -120,4 +124,5 @@ const config = tseslint.config(
|
|
|
120
124
|
},
|
|
121
125
|
}
|
|
122
126
|
);
|
|
127
|
+
|
|
123
128
|
module.exports = { config };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package",
|
|
3
3
|
"name": "@skilbjo/config-rc",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.35",
|
|
5
5
|
"description": "eslint, prettier, & tsconfig config",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"exports": {
|
|
@@ -33,27 +33,28 @@
|
|
|
33
33
|
},
|
|
34
34
|
"homepage": "https://github.com/skilbjo/config-rc#readme",
|
|
35
35
|
"dependencies": {
|
|
36
|
+
"@eslint/js": "9.39.2",
|
|
37
|
+
"@stylistic/eslint-plugin": "5.7.0",
|
|
36
38
|
"@tsconfig/node22": "22.0.5",
|
|
37
39
|
"@types/jest": "30.0.0",
|
|
38
40
|
"eslint": "9.39.2",
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
+
"eslint-config-prettier": "10.1.8",
|
|
42
|
+
"eslint-import-resolver-typescript": "4.4.4",
|
|
41
43
|
"eslint-plugin-import": "2.32.0",
|
|
42
|
-
"eslint-plugin-n": "17.23.2",
|
|
43
44
|
"eslint-plugin-jest": "29.12.1",
|
|
45
|
+
"eslint-plugin-n": "17.23.2",
|
|
46
|
+
"eslint-plugin-perfectionist": "5.3.1",
|
|
44
47
|
"eslint-plugin-prettier": "5.5.5",
|
|
45
|
-
"eslint-config-prettier": "10.1.8",
|
|
46
48
|
"eslint-plugin-security": "3.0.1",
|
|
47
|
-
"eslint-plugin-perfectionist": "4.15.1",
|
|
48
49
|
"globals": "17.0.0",
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"typescript": "
|
|
50
|
+
"prettier": "3.8.1",
|
|
51
|
+
"typescript": "5.9.3",
|
|
52
|
+
"typescript-eslint": "8.53.1"
|
|
52
53
|
},
|
|
53
54
|
"devDependencies": {
|
|
54
55
|
"@commitlint/cli": "19.3.0",
|
|
55
56
|
"@commitlint/config-angular": "16.2.4",
|
|
56
|
-
"@types/node": "25.0.
|
|
57
|
+
"@types/node": "25.0.10",
|
|
57
58
|
"depcheck": "1.4.7",
|
|
58
59
|
"husky": "8.0.1"
|
|
59
60
|
},
|