@skilbjo/config-rc 1.0.13 → 1.0.15
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.cjs +7 -5
- package/CHANGELOG.md +15 -0
- package/index.js +1 -1
- package/package.json +3 -3
package/.eslintrc.cjs
CHANGED
|
@@ -12,9 +12,10 @@ module.exports = {
|
|
|
12
12
|
'plugin:@typescript-eslint/strict',
|
|
13
13
|
'plugin:import/recommended',
|
|
14
14
|
'plugin:import/typescript',
|
|
15
|
-
'plugin:
|
|
15
|
+
'plugin:n/recommended',
|
|
16
16
|
'plugin:prettier/recommended',
|
|
17
17
|
'plugin:security/recommended-legacy',
|
|
18
|
+
'plugin:perfectionist/recommended-alphabetical-legacy',
|
|
18
19
|
],
|
|
19
20
|
globals: {
|
|
20
21
|
Atomics: 'readonly',
|
|
@@ -49,11 +50,12 @@ module.exports = {
|
|
|
49
50
|
'import/no-duplicates': 2,
|
|
50
51
|
'import/no-unresolved': 2,
|
|
51
52
|
'import/order': 2,
|
|
53
|
+
'n/no-missing-import': 'off', // conflicts with typescript absolute imports
|
|
54
|
+
'n/no-unsupported-features/es-syntax': 'off',
|
|
55
|
+
'n/shebang': 'off',
|
|
52
56
|
'no-multiple-empty-lines': [2, { max: 1, maxEOF: 0 }],
|
|
53
|
-
'
|
|
54
|
-
'
|
|
55
|
-
'node/shebang': 'off',
|
|
56
|
-
'perfectionist/sort-imports': 'error',
|
|
57
|
+
'perfectionist/sort-exports': 'off',
|
|
58
|
+
'perfectionist/sort-imports': 'off',
|
|
57
59
|
'prettier/prettier': [
|
|
58
60
|
'error',
|
|
59
61
|
{
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [1.0.15](https://github.com/skilbjo/config-rc/compare/v1.0.14...v1.0.15) (2024-10-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* swap deprecated with current plugin ([c425d1b](https://github.com/skilbjo/config-rc/commit/c425d1bc29c35f07035aa3ead34a3d5a28daf27f))
|
|
7
|
+
|
|
8
|
+
## [1.0.14](https://github.com/skilbjo/config-rc/compare/v1.0.13...v1.0.14) (2024-10-15)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** bump typescript from 5.6.2 to 5.6.3 ([#163](https://github.com/skilbjo/config-rc/issues/163)) ([522da70](https://github.com/skilbjo/config-rc/commit/522da709d4a2b96b924fc70962e97dfa431d92be))
|
|
14
|
+
* update config ([8e1fccd](https://github.com/skilbjo/config-rc/commit/8e1fccd5fb3e7aae73dddc47266300abb25962a8))
|
|
15
|
+
|
|
1
16
|
## [1.0.13](https://github.com/skilbjo/config-rc/compare/v1.0.12...v1.0.13) (2024-10-11)
|
|
2
17
|
|
|
3
18
|
|
package/index.js
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
// const require = createRequire(import.meta.url);
|
|
4
4
|
|
|
5
|
-
const eslintrc = require('./.eslintrc.cjs'); // eslint-disable-line @typescript-eslint/no-var-requires
|
|
5
|
+
const eslintrc = require('./.eslintrc.cjs'); // eslint-disable-line @typescript-eslint/no-var-requires, n/no-missing-require
|
|
6
6
|
|
|
7
7
|
module.exports = eslintrc;
|
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.15",
|
|
5
5
|
"description": "eslint, prettier, & tsconfig config",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"scripts": {
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"eslint-import-resolver-typescript": "3.6.3",
|
|
33
33
|
"eslint-plugin-import": "2.31.0",
|
|
34
34
|
"eslint-plugin-jest": "28.8.3",
|
|
35
|
-
"eslint-plugin-
|
|
35
|
+
"eslint-plugin-n": "17.10.3",
|
|
36
36
|
"eslint-plugin-perfectionist": "3.8.0",
|
|
37
37
|
"eslint-plugin-prettier": "5.2.1",
|
|
38
38
|
"eslint-plugin-security": "3.0.1",
|
|
39
39
|
"prettier": "3.3.3",
|
|
40
|
-
"typescript": "5.6.
|
|
40
|
+
"typescript": "5.6.3"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@commitlint/cli": "19.3.0",
|