@etchteam/eslint-config 1.1.0 → 1.1.1
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/CHANGELOG.md +3 -7
- package/README.md +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
## [1.1.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Features
|
|
5
|
-
|
|
6
|
-
* move @/ alias to the parent group ([8ee69c4](https://github.com/etchteam/eslint/commit/8ee69c4b372c688628b9303adc2568a490ff6709))
|
|
1
|
+
## [1.1.1](https://github.com/etchteam/eslint/compare/v1.1.0...v1.1.1) (2023-01-24)
|
|
7
2
|
|
|
8
3
|
|
|
9
4
|
### Bug Fixes
|
|
10
5
|
|
|
11
|
-
*
|
|
6
|
+
* **docs:** append semi-colon to so that it automatically passes validation ([466b357](https://github.com/etchteam/eslint/commit/466b35744fab08ab4973ed5bd95cde18456df6a3))
|
|
7
|
+
* **docs:** escape quotes so that we generate a valid json document ([a5e4de4](https://github.com/etchteam/eslint/commit/a5e4de412b2bc7dbbdb0b10282da46f9989a90d8))
|
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ npm install eslint prettier @etchteam/eslint-config
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
echo "module.exports = { extends: ['@etchteam'] }" > .eslintrc.js
|
|
14
|
+
echo "module.exports = { extends: ['@etchteam'] };" > .eslintrc.js
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
### With lint-staged
|
|
@@ -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\": true } }" > .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
|