@etchteam/eslint-config 1.8.0 → 1.10.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/.github/dependabot.yml +7 -0
- package/.vscode/settings.json +1 -1
- package/CHANGELOG.md +2 -3
- package/README.md +2 -2
- package/package.json +3 -3
package/.vscode/settings.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
## [1.
|
|
1
|
+
## [1.10.0](https://github.com/etchteam/eslint/compare/v1.9.0...v1.10.0) (2024-01-11)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Features
|
|
5
5
|
|
|
6
|
-
*
|
|
7
|
-
* use a symlink so we use our own linter to lint our linter ([afea6ba](https://github.com/etchteam/eslint/commit/afea6ba0cf6efd70aeca378d192684e9107a4968))
|
|
6
|
+
* configure dependabot so that it uses the correct commit message prefix ([cfbce50](https://github.com/etchteam/eslint/commit/cfbce504ef3017fc3074d4f4ca6a764fd8cf13cc))
|
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@ Run the following:
|
|
|
46
46
|
```bash
|
|
47
47
|
mkdir .vscode
|
|
48
48
|
|
|
49
|
-
echo "{ \"editor.formatOnSave\": false, \"editor.codeActionsOnSave\": { \"source.fixAll.eslint\":
|
|
49
|
+
echo "{ \"editor.formatOnSave\": false, \"editor.codeActionsOnSave\": { \"source.fixAll.eslint\": \"explicit\" } }" > .vscode/settings.json
|
|
50
50
|
|
|
51
51
|
# The VSCode prettier extension doesn't read the eslint config, so specific
|
|
52
52
|
# prettier overrides need to go in a prettier config for format on save
|
|
@@ -61,7 +61,7 @@ Add the following to `.vscode/settings.json`:
|
|
|
61
61
|
```json
|
|
62
62
|
"editor.formatOnSave": false,
|
|
63
63
|
"editor.codeActionsOnSave": {
|
|
64
|
-
"source.fixAll.eslint":
|
|
64
|
+
"source.fixAll.eslint": "explicit"
|
|
65
65
|
}
|
|
66
66
|
```
|
|
67
67
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etchteam/eslint-config",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"description": "Etch's standard eslint config",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"lint-staged": "^13.1.0"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
34
|
-
"@typescript-eslint/parser": "^6.
|
|
33
|
+
"@typescript-eslint/eslint-plugin": "^6.18.1",
|
|
34
|
+
"@typescript-eslint/parser": "^6.18.1",
|
|
35
35
|
"eslint": ">=8.29.0",
|
|
36
36
|
"eslint-config-next": "^14.0.1",
|
|
37
37
|
"eslint-config-prettier": "^9.0.0",
|