@skilbjo/config-rc 1.0.14 → 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 +4 -4
- package/CHANGELOG.md +7 -0
- package/index.js +1 -1
- package/package.json +2 -2
package/.eslintrc.cjs
CHANGED
|
@@ -12,7 +12,7 @@ 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
18
|
'plugin:perfectionist/recommended-alphabetical-legacy',
|
|
@@ -50,10 +50,10 @@ module.exports = {
|
|
|
50
50
|
'import/no-duplicates': 2,
|
|
51
51
|
'import/no-unresolved': 2,
|
|
52
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',
|
|
53
56
|
'no-multiple-empty-lines': [2, { max: 1, maxEOF: 0 }],
|
|
54
|
-
'node/no-missing-import': 'off', // conflicts with typescript absolute imports
|
|
55
|
-
'node/no-unsupported-features/es-syntax': 'off',
|
|
56
|
-
'node/shebang': 'off',
|
|
57
57
|
'perfectionist/sort-exports': 'off',
|
|
58
58
|
'perfectionist/sort-imports': 'off',
|
|
59
59
|
'prettier/prettier': [
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
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
|
+
|
|
1
8
|
## [1.0.14](https://github.com/skilbjo/config-rc/compare/v1.0.13...v1.0.14) (2024-10-15)
|
|
2
9
|
|
|
3
10
|
|
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,7 +32,7 @@
|
|
|
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",
|