@newhighsco/eslint-config 3.2.81 → 3.3.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 (3) hide show
  1. package/README.md +1 -1
  2. package/index.js +2 -0
  3. package/package.json +4 -4
package/README.md CHANGED
@@ -27,7 +27,7 @@ Now you can run ESLint by adding the following scripts to your `package.json`. S
27
27
 
28
28
  ```json
29
29
  "scripts": {
30
- "lint:js": "eslint --cache --ignore-path .gitignore --ext .js,.json,.jsx,.mdx,.ts,.tsx .",
30
+ "lint:js": "eslint --cache --ignore-path .gitignore .",
31
31
  "format:js": "yarn lint:js --fix"
32
32
  }
33
33
  ```
package/index.js CHANGED
@@ -12,6 +12,8 @@ module.exports = {
12
12
  'json/sort-package-json': false
13
13
  },
14
14
  overrides: [
15
+ // JSON
16
+ { files: ['*.json'] },
15
17
  // Typescript
16
18
  {
17
19
  files: ['*.ts?(x)'],
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@newhighsco/eslint-config",
3
3
  "description": "New High Score shareable config for ESLint",
4
- "version": "3.2.81",
4
+ "version": "3.3.0",
5
5
  "author": "New High Score <hello@newhighsco.re>",
6
6
  "license": "ISC",
7
7
  "private": false,
@@ -20,8 +20,8 @@
20
20
  },
21
21
  "files": [],
22
22
  "dependencies": {
23
- "@typescript-eslint/eslint-plugin": "5.40.1",
24
- "@typescript-eslint/parser": "5.40.1",
23
+ "@typescript-eslint/eslint-plugin": "5.41.0",
24
+ "@typescript-eslint/parser": "5.41.0",
25
25
  "eslint-config-prettier": "8.5.0",
26
26
  "eslint-config-standard-jsx": "11.0.0",
27
27
  "eslint-config-standard-react": "11.0.1",
@@ -38,7 +38,7 @@
38
38
  "eslint-plugin-tsc": "2.0.0"
39
39
  },
40
40
  "devDependencies": {
41
- "@types/react": "18.0.21",
41
+ "@types/react": "18.0.24",
42
42
  "eslint": "8.26.0"
43
43
  },
44
44
  "peerDependencies": {