@evanpurkhiser/eslint-config 0.21.0 → 0.22.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -15,7 +15,7 @@ Create a `eslint.config.mjs` file with the contents:
15
15
  ```js
16
16
  import {all} from '@evanpurkhiser/eslint-config';
17
17
 
18
- export defaukt [...all];
18
+ export default [...all];
19
19
  ```
20
20
 
21
21
  The default configuration is for React apps, but you can select from the
@@ -29,5 +29,5 @@ For example:
29
29
  ```js
30
30
  import {common} from '@evanpurkhiser/eslint-config';
31
31
 
32
- export defaukt [...common];
32
+ export default [...common];
33
33
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evanpurkhiser/eslint-config",
3
- "version": "0.21.0",
3
+ "version": "0.22.0",
4
4
  "description": "Evan Purkhiser's personal eslint configuration",
5
5
  "main": "index.js",
6
6
  "repository": "https://github.com/evanpurkhiser/eslint-config",