@rebeccastevens/eslint-config 1.4.6 → 1.5.0
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/CHANGELOG.md +12 -0
- package/dist/modern.cjs +3 -2
- package/dist/modern.mjs +3 -2
- package/package.json +38 -38
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
|
|
3
3
|
|
|
4
|
+
# [1.5.0](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.4.6...v1.5.0) (2023-01-29)
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* **functional/prefer-immutable-types:** decrease severity, enforcement and add exception ([2855e16](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/2855e167c3114c7a59e47bb2189b485ba49646bc))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* update deps ([1d13853](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/commit/1d1385391599e290ab86d5c17288faf89d6152da))
|
|
15
|
+
|
|
4
16
|
## [1.4.6](https://github.com/RebeccaStevens/eslint-config-rebeccastevens/compare/v1.4.5...v1.4.6) (2022-12-16)
|
|
5
17
|
|
|
6
18
|
|
package/dist/modern.cjs
CHANGED
|
@@ -621,12 +621,13 @@ const settings$8 = {
|
|
|
621
621
|
},
|
|
622
622
|
],
|
|
623
623
|
"functional/prefer-immutable-types": [
|
|
624
|
-
"
|
|
624
|
+
"warn",
|
|
625
625
|
{
|
|
626
626
|
enforcement: "None",
|
|
627
627
|
ignoreInferredTypes: true,
|
|
628
|
+
ignoreNamePattern: ["^m_"],
|
|
628
629
|
parameters: {
|
|
629
|
-
enforcement: "
|
|
630
|
+
enforcement: "ReadonlyShallow",
|
|
630
631
|
},
|
|
631
632
|
fixer: {
|
|
632
633
|
ReadonlyShallow: [
|
package/dist/modern.mjs
CHANGED
|
@@ -619,12 +619,13 @@ const settings$8 = {
|
|
|
619
619
|
},
|
|
620
620
|
],
|
|
621
621
|
"functional/prefer-immutable-types": [
|
|
622
|
-
"
|
|
622
|
+
"warn",
|
|
623
623
|
{
|
|
624
624
|
enforcement: "None",
|
|
625
625
|
ignoreInferredTypes: true,
|
|
626
|
+
ignoreNamePattern: ["^m_"],
|
|
626
627
|
parameters: {
|
|
627
|
-
enforcement: "
|
|
628
|
+
enforcement: "ReadonlyShallow",
|
|
628
629
|
},
|
|
629
630
|
fixer: {
|
|
630
631
|
ReadonlyShallow: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rebeccastevens/eslint-config",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "My ESLint shareable config.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint config"
|
|
@@ -58,54 +58,54 @@
|
|
|
58
58
|
"test": "echo no tests"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"deepmerge-ts": "^4.
|
|
61
|
+
"deepmerge-ts": "^4.2.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@commitlint/cli": "^17.
|
|
65
|
-
"@commitlint/config-conventional": "^17.
|
|
66
|
-
"@rollup/plugin-commonjs": "^
|
|
67
|
-
"@rollup/plugin-node-resolve": "^
|
|
68
|
-
"@rollup/plugin-typescript": "^
|
|
69
|
-
"@semantic-release/changelog": "^6.0.
|
|
64
|
+
"@commitlint/cli": "^17.4.2",
|
|
65
|
+
"@commitlint/config-conventional": "^17.4.2",
|
|
66
|
+
"@rollup/plugin-commonjs": "^24.0.1",
|
|
67
|
+
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
68
|
+
"@rollup/plugin-typescript": "^11.0.0",
|
|
69
|
+
"@semantic-release/changelog": "^6.0.2",
|
|
70
70
|
"@semantic-release/commit-analyzer": "^9.0.2",
|
|
71
71
|
"@semantic-release/git": "^10.0.1",
|
|
72
|
-
"@semantic-release/github": "^8.0.
|
|
73
|
-
"@semantic-release/npm": "^9.0.
|
|
72
|
+
"@semantic-release/github": "^8.0.7",
|
|
73
|
+
"@semantic-release/npm": "^9.0.2",
|
|
74
74
|
"@semantic-release/release-notes-generator": "^10.0.3",
|
|
75
|
-
"@types/eslint": "^8.4.
|
|
76
|
-
"@types/node": "^
|
|
77
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
78
|
-
"@typescript-eslint/parser": "^5.
|
|
79
|
-
"commitizen": "^4.
|
|
80
|
-
"cspell": "^6.
|
|
75
|
+
"@types/eslint": "^8.4.10",
|
|
76
|
+
"@types/node": "^18.11.18",
|
|
77
|
+
"@typescript-eslint/eslint-plugin": "^5.49.0",
|
|
78
|
+
"@typescript-eslint/parser": "^5.49.0",
|
|
79
|
+
"commitizen": "^4.3.0",
|
|
80
|
+
"cspell": "^6.19.2",
|
|
81
81
|
"cz-conventional-changelog": "^3.3.0",
|
|
82
|
-
"eslint": "^8.
|
|
83
|
-
"eslint-config-prettier": "^8.
|
|
84
|
-
"eslint-import-resolver-typescript": "^3.
|
|
82
|
+
"eslint": "^8.33.0",
|
|
83
|
+
"eslint-config-prettier": "^8.6.0",
|
|
84
|
+
"eslint-import-resolver-typescript": "^3.5.3",
|
|
85
85
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
86
|
-
"eslint-plugin-functional": "^5.0.0
|
|
87
|
-
"eslint-plugin-import": "^2.
|
|
88
|
-
"eslint-plugin-jsdoc": "^39.
|
|
86
|
+
"eslint-plugin-functional": "^5.0.0",
|
|
87
|
+
"eslint-plugin-import": "^2.27.5",
|
|
88
|
+
"eslint-plugin-jsdoc": "^39.7.4",
|
|
89
89
|
"eslint-plugin-markdown": "^3.0.0",
|
|
90
90
|
"eslint-plugin-node": "^11.1.0",
|
|
91
91
|
"eslint-plugin-optimize-regex": "^1.2.1",
|
|
92
|
-
"eslint-plugin-prettier": "^4.
|
|
93
|
-
"eslint-plugin-promise": "^6.
|
|
94
|
-
"eslint-plugin-sonarjs": "^0.
|
|
95
|
-
"eslint-plugin-unicorn": "^
|
|
96
|
-
"husky": "^8.0.
|
|
97
|
-
"lint-staged": "^13.0
|
|
98
|
-
"markdownlint-cli": "^0.
|
|
92
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
93
|
+
"eslint-plugin-promise": "^6.1.1",
|
|
94
|
+
"eslint-plugin-sonarjs": "^0.18.0",
|
|
95
|
+
"eslint-plugin-unicorn": "^45.0.2",
|
|
96
|
+
"husky": "^8.0.3",
|
|
97
|
+
"lint-staged": "^13.1.0",
|
|
98
|
+
"markdownlint-cli": "^0.33.0",
|
|
99
99
|
"nyc": "^15.1.0",
|
|
100
|
-
"prettier": "^2.
|
|
101
|
-
"rimraf": "^
|
|
102
|
-
"rollup": "^
|
|
100
|
+
"prettier": "^2.8.3",
|
|
101
|
+
"rimraf": "^4.1.2",
|
|
102
|
+
"rollup": "^3.12.0",
|
|
103
103
|
"rollup-plugin-auto-external": "^2.0.0",
|
|
104
|
-
"semantic-release": "^
|
|
105
|
-
"ts-node": "^10.
|
|
106
|
-
"tsconfig-paths": "^4.
|
|
107
|
-
"tslib": "^2.
|
|
108
|
-
"typescript": "^4.
|
|
104
|
+
"semantic-release": "^20.1.0",
|
|
105
|
+
"ts-node": "^10.9.1",
|
|
106
|
+
"tsconfig-paths": "^4.1.2",
|
|
107
|
+
"tslib": "^2.5.0",
|
|
108
|
+
"typescript": "^4.9.4"
|
|
109
109
|
},
|
|
110
110
|
"peerDependencies": {
|
|
111
111
|
"@typescript-eslint/eslint-plugin": "*",
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
"eslint": ">=8.24.0",
|
|
114
114
|
"eslint-import-resolver-typescript": "*",
|
|
115
115
|
"eslint-plugin-eslint-comments": "*",
|
|
116
|
-
"eslint-plugin-functional": ">=5.0.0
|
|
116
|
+
"eslint-plugin-functional": ">=5.0.0",
|
|
117
117
|
"eslint-plugin-import": "*",
|
|
118
118
|
"eslint-plugin-jsdoc": "*",
|
|
119
119
|
"eslint-plugin-markdown": "*",
|