@anolilab/eslint-config 10.0.3 → 10.0.4
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 +19 -0
- package/package.json +5 -4
- package/skip.js +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## @anolilab/eslint-config [10.0.4](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@10.0.3...@anolilab/eslint-config@10.0.4) (2023-07-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* included 'skip.js' in package.json for several packages ([1c84b33](https://github.com/anolilab/javascript-style-guide/commit/1c84b33435abc75666214632eba4566f36c78e1a))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Miscellaneous Chores
|
|
10
|
+
|
|
11
|
+
* **deps:** update dependency @types/eslint to ^8.44.1 ([5899a67](https://github.com/anolilab/javascript-style-guide/commit/5899a6770af5dd92aecbe0479e713c995d6b1980))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Dependencies
|
|
16
|
+
|
|
17
|
+
* **@anolilab/package-json-utils:** upgraded to 3.0.2
|
|
18
|
+
* **@anolilab/semantic-release-preset:** upgraded to 6.0.2
|
|
19
|
+
|
|
1
20
|
## @anolilab/eslint-config [10.0.3](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@10.0.2...@anolilab/eslint-config@10.0.3) (2023-07-25)
|
|
2
21
|
|
|
3
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anolilab/eslint-config",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.4",
|
|
4
4
|
"description": "ESLint shareable config for the Anolilab JavaScript style guide.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -104,6 +104,7 @@
|
|
|
104
104
|
"types": "dist/index.d.ts",
|
|
105
105
|
"files": [
|
|
106
106
|
"dist",
|
|
107
|
+
"skip.js",
|
|
107
108
|
"globals.js",
|
|
108
109
|
"typescript-type-checking.js",
|
|
109
110
|
"README.md",
|
|
@@ -117,7 +118,7 @@
|
|
|
117
118
|
"postinstall": "node ./skip.js || node ./dist/postinstall.js"
|
|
118
119
|
},
|
|
119
120
|
"dependencies": {
|
|
120
|
-
"@anolilab/package-json-utils": "3.0.
|
|
121
|
+
"@anolilab/package-json-utils": "3.0.2",
|
|
121
122
|
"@babel/eslint-parser": "^7.22.9",
|
|
122
123
|
"@babel/plugin-syntax-import-assertions": "^7.22.5",
|
|
123
124
|
"@html-eslint/eslint-plugin": "^0.19.1",
|
|
@@ -160,12 +161,12 @@
|
|
|
160
161
|
"yaml-eslint-parser": "^1.2.2"
|
|
161
162
|
},
|
|
162
163
|
"devDependencies": {
|
|
163
|
-
"@anolilab/semantic-release-preset": "6.0.
|
|
164
|
+
"@anolilab/semantic-release-preset": "6.0.2",
|
|
164
165
|
"@arthurgeron/eslint-plugin-react-usememo": "^1.1.4",
|
|
165
166
|
"@testing-library/dom": "^9.3.1",
|
|
166
167
|
"@total-typescript/ts-reset": "^0.4.2",
|
|
167
168
|
"@types/confusing-browser-globals": "^1.0.0",
|
|
168
|
-
"@types/eslint": "^8.44.
|
|
169
|
+
"@types/eslint": "^8.44.1",
|
|
169
170
|
"@types/semver": "^7.5.0",
|
|
170
171
|
"eslint": "^8.45.0",
|
|
171
172
|
"eslint-find-rules": "^4.1.0",
|