@etchteam/eslint-config 1.0.3 → 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.
File without changes
package/CHANGELOG.md CHANGED
@@ -1,8 +1,7 @@
1
- ## [1.0.3](https://github.com/etchteam/eslint/compare/v1.0.2...v1.0.3) (2022-12-19)
1
+ ## [1.1.1](https://github.com/etchteam/eslint/compare/v1.1.0...v1.1.1) (2023-01-24)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * add peer deps ([641e7be](https://github.com/etchteam/eslint/commit/641e7be83810b4c8946bb421b1b2950937a1ad5e))
7
- * eslint requires a specific config name ([0bffcee](https://github.com/etchteam/eslint/commit/0bffcee865455d339b296da15875d851d2e45ea7))
8
- * keep config in single file ([8d707e2](https://github.com/etchteam/eslint/commit/8d707e220929861f31795497447366a7bb2f92a5))
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etchteam/eslint-config",
3
- "version": "1.0.3",
3
+ "version": "1.1.1",
4
4
  "description": "Etch's standard eslint config",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
package/src/index.js CHANGED
@@ -20,6 +20,10 @@ module.exports = {
20
20
  alphabetize: {
21
21
  order: 'asc'
22
22
  },
23
+ pathGroups: [{
24
+ pattern: '@/**',
25
+ group: 'parent'
26
+ }]
23
27
  }],
24
28
  },
25
29
  settings: {