@w5s/eslint-config 3.3.3 → 3.5.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
@@ -23,7 +23,7 @@ npm install --save-dev @w5s/eslint-config
23
23
 
24
24
  For most kind of project, just edit `eslintrc.json` and add default configuration
25
25
 
26
- ```js
26
+ ```json
27
27
  {
28
28
  "extends": [
29
29
  "@w5s/eslint-config"
@@ -42,7 +42,7 @@ For most kind of project, just edit `eslintrc.json` and add default configuratio
42
42
 
43
43
  For most kind of project, just edit `eslintrc.json` and cherry pick only configurations
44
44
 
45
- ```js
45
+ ```jsonc
46
46
  {
47
47
  "root": true,
48
48
  "extends": [
@@ -50,10 +50,10 @@ For most kind of project, just edit `eslintrc.json` and cherry pick only configu
50
50
  "@w5s/eslint-config/jest",
51
51
  "@w5s/eslint-config/json",
52
52
  "@w5s/eslint-config/ts",
53
- "@w5s/eslint-config/yml",
53
+ "@w5s/eslint-config/yml"
54
54
  // include more configurations here
55
55
  ]
56
- //...
56
+ // ...
57
57
  }
58
58
  ```
59
59