@skilbjo/config-rc 1.0.13 → 1.0.14

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 CHANGED
@@ -15,6 +15,7 @@ module.exports = {
15
15
  'plugin:node/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',
@@ -53,7 +54,8 @@ module.exports = {
53
54
  'node/no-missing-import': 'off', // conflicts with typescript absolute imports
54
55
  'node/no-unsupported-features/es-syntax': 'off',
55
56
  '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,11 @@
1
+ ## [1.0.14](https://github.com/skilbjo/config-rc/compare/v1.0.13...v1.0.14) (2024-10-15)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **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))
7
+ * update config ([8e1fccd](https://github.com/skilbjo/config-rc/commit/8e1fccd5fb3e7aae73dddc47266300abb25962a8))
8
+
1
9
  ## [1.0.13](https://github.com/skilbjo/config-rc/compare/v1.0.12...v1.0.13) (2024-10-11)
2
10
 
3
11
 
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.13",
4
+ "version": "1.0.14",
5
5
  "description": "eslint, prettier, & tsconfig config",
6
6
  "main": "index.js",
7
7
  "scripts": {
@@ -37,7 +37,7 @@
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.2"
40
+ "typescript": "5.6.3"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@commitlint/cli": "19.3.0",