eslint-config-silverwind 51.0.5 → 52.0.2

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.
Files changed (3) hide show
  1. package/README.md +2 -1
  2. package/index.json +3 -2
  3. package/package.json +4 -2
package/README.md CHANGED
@@ -4,7 +4,8 @@
4
4
  # Installation
5
5
 
6
6
  ``` bash
7
- npm i -D eslint eslint-config-silverwind && echo 'extends: silverwind' > .eslintrc
7
+ npm i -D eslint eslint-config-silverwind
8
+ echo 'extends: silverwind' > .eslintrc.yaml
8
9
  ```
9
10
 
10
11
  © [silverwind](https://github.com/silverwind), distributed under BSD licence.
package/index.json CHANGED
@@ -976,11 +976,12 @@
976
976
  2,
977
977
  {
978
978
  "args": "all",
979
+ "caughtErrors": "all",
980
+ "ignoreRestSiblings": false,
979
981
  "argsIgnorePattern": "^_",
980
982
  "varsIgnorePattern": "^_",
981
983
  "caughtErrorsIgnorePattern": "^_",
982
- "destructuredArrayIgnorePattern": "^_",
983
- "ignoreRestSiblings": false
984
+ "destructuredArrayIgnorePattern": "^_"
984
985
  }
985
986
  ],
986
987
  "no-use-before-define": [
package/package.json CHANGED
@@ -1,11 +1,13 @@
1
1
  {
2
2
  "name": "eslint-config-silverwind",
3
- "version": "51.0.5",
3
+ "version": "52.0.2",
4
4
  "description": "Personal ESLint configuration",
5
5
  "author": "silverwind <me@silverwind.io>",
6
6
  "repository": "silverwind/eslint-config-silverwind",
7
7
  "license": "BSD-2-Clause",
8
- "main": "index.json",
8
+ "type": "module",
9
+ "main": "./index.json",
10
+ "exports": "./index.json",
9
11
  "files": [
10
12
  "index.json"
11
13
  ],