@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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ version: 2
3
+ updates:
4
+ - package-ecosystem: "npm"
5
+ commit-message:
6
+ prefix: "fix"
7
+ prefix-development: "chore"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "editor.formatOnSave": false,
3
3
  "editor.codeActionsOnSave": {
4
- "source.fixAll.eslint": true,
4
+ "source.fixAll.eslint": "explicit"
5
5
  },
6
6
  "sonarlint.connectedMode.project": {
7
7
  "connectionId": "etchteam",
package/CHANGELOG.md CHANGED
@@ -1,7 +1,6 @@
1
- ## [1.8.0](https://github.com/etchteam/eslint/compare/v1.7.1...v1.8.0) (2023-12-06)
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
- * add json and yaml linting ([c1354f8](https://github.com/etchteam/eslint/commit/c1354f8c1006bfe347c5048298caccb58923d2e9))
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\": true } }" > .vscode/settings.json
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": true
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.8.0",
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.9.1",
34
- "@typescript-eslint/parser": "^6.9.1",
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",