@morgs32/eslint-config 2.0.8 → 2.0.9

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/base.eslintrc.js +1 -2
  2. package/package.json +8 -8
package/base.eslintrc.js CHANGED
@@ -18,7 +18,6 @@ module.exports = {
18
18
  'testing-library',
19
19
  'prettier',
20
20
  ],
21
-
22
21
  rules: {
23
22
  'prettier/prettier': 'error',
24
23
  'spaced-comment': ['error', 'always', { markers: ['/'] }],
@@ -334,4 +333,4 @@ module.exports = {
334
333
  },
335
334
  },
336
335
  ],
337
- };
336
+ }
package/package.json CHANGED
@@ -1,11 +1,14 @@
1
1
  {
2
2
  "name": "@morgs32/eslint-config",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "description": "",
5
5
  "main": ".eslintrc.js",
6
6
  "files": [
7
7
  "*.eslintrc.js"
8
8
  ],
9
+ "scripts": {
10
+ "lint": "eslint ."
11
+ },
9
12
  "repository": {
10
13
  "type": "git",
11
14
  "url": "git+https://github.com/morgs32/eslint-config.git"
@@ -24,12 +27,12 @@
24
27
  "eslint-plugin-prettier": "^5.0.0",
25
28
  "eslint-plugin-react": "^7.33.1",
26
29
  "eslint-plugin-testing-library": "^5.11.0",
27
- "eslint-plugin-unused-imports": "^3.0.0"
30
+ "eslint-plugin-unused-imports": "^3.0.0",
31
+ "next": ">13.0.0",
32
+ "react": ">17.0.0"
28
33
  },
29
34
  "peerDependencies": {
30
35
  "eslint": "*",
31
- "next": "*",
32
- "react": "*",
33
36
  "typescript": "*"
34
37
  },
35
38
  "devDependencies": {
@@ -38,8 +41,5 @@
38
41
  "next": "^13.4.12",
39
42
  "react": "^18.2.0",
40
43
  "typescript": "^5.1.6"
41
- },
42
- "scripts": {
43
- "lint": "eslint ."
44
44
  }
45
- }
45
+ }