@timobechtel/style 1.6.0 → 1.7.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/README.md CHANGED
@@ -89,7 +89,7 @@ Add the following to your VSCode config, e.g. `.vscode/settings.json`
89
89
  {
90
90
  "editor.codeActionsOnSave": {
91
91
  // use eslint import/order instead
92
- "source.organizeImports": false
92
+ "source.organizeImports": "never"
93
93
  }
94
94
  }
95
95
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timobechtel/style",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "bin",
@@ -13,6 +13,7 @@
13
13
  "noUnusedLocals": false,
14
14
  "noUnusedParameters": false,
15
15
  "noImplicitAny": true,
16
+ "noUncheckedIndexedAccess": true,
16
17
  "preserveWatchOutput": true,
17
18
  "skipLibCheck": true,
18
19
  "strict": true,