@kununu/eslint-config 2.4.2 → 2.5.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/.nvmrc +1 -0
  2. package/index.js +2 -2
  3. package/package.json +23 -19
package/.nvmrc ADDED
@@ -0,0 +1 @@
1
+ 18.14.0
package/index.js CHANGED
@@ -86,9 +86,9 @@ const baseRules = {
86
86
  // require newline at the end of files
87
87
  'eol-last': ['error', 'always'],
88
88
 
89
- // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-sort-default-props.md
89
+ // https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules/sort-default-props.md
90
90
  // enforce defaultProps declarations alphabetical sorting
91
- 'react/jsx-sort-default-props': ['error', {
91
+ 'react/sort-default-props': ['error', {
92
92
  'ignoreCase': true
93
93
  }],
94
94
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kununu/eslint-config",
3
- "version": "2.4.2",
3
+ "version": "2.5.0",
4
4
  "description": "kununu's ESLint config",
5
5
  "main": "index.js",
6
6
  "repository": "kununu/eslint-config",
@@ -17,26 +17,30 @@
17
17
  "bugs": {
18
18
  "url": "https://github.com/kununu/eslint-config/issues"
19
19
  },
20
+ "engines": {
21
+ "node": "18.x.x",
22
+ "npm": ">= 9.3.x"
23
+ },
20
24
  "homepage": "https://github.com/kununu/eslint-config#readme",
21
25
  "dependencies": {
22
- "@babel/core": "7.16.0",
23
- "@babel/eslint-parser": "7.16.3",
24
- "@babel/eslint-plugin": "7.14.5",
25
- "@typescript-eslint/eslint-plugin": "5.48.2",
26
- "@typescript-eslint/parser": "5.48.2",
27
- "eslint": "8.4.0",
28
- "eslint-config-airbnb": "19.0.2",
29
- "eslint-config-airbnb-typescript": "16.1.0",
30
- "eslint-config-prettier": "8.3.0",
26
+ "@babel/core": "7.21.4",
27
+ "@babel/eslint-parser": "7.21.3",
28
+ "@babel/eslint-plugin": "7.19.1",
29
+ "@typescript-eslint/eslint-plugin": "5.59.0",
30
+ "@typescript-eslint/parser": "5.59.0",
31
+ "eslint": "8.38.0",
32
+ "eslint-config-airbnb": "19.0.4",
33
+ "eslint-config-airbnb-typescript": "17.0.0",
34
+ "eslint-config-prettier": "8.8.0",
31
35
  "eslint-import-resolver-alias": "1.1.2",
32
- "eslint-plugin-import": "2.25.3",
33
- "eslint-plugin-jest-dom": "3.9.2",
34
- "eslint-plugin-jsx-a11y": "6.5.1",
35
- "eslint-plugin-prettier": "4.0.0",
36
- "eslint-plugin-react": "7.27.1",
37
- "eslint-plugin-react-hooks": "4.3.0",
38
- "eslint-plugin-testing-library": "5.0.1",
39
- "prettier": "2.5.1",
40
- "typescript": "4.5.2"
36
+ "eslint-plugin-import": "2.27.5",
37
+ "eslint-plugin-jest-dom": "4.0.3",
38
+ "eslint-plugin-jsx-a11y": "6.7.1",
39
+ "eslint-plugin-prettier": "4.2.1",
40
+ "eslint-plugin-react": "7.32.2",
41
+ "eslint-plugin-react-hooks": "4.6.0",
42
+ "eslint-plugin-testing-library": "5.10.3",
43
+ "prettier": "2.8.7",
44
+ "typescript": "5.0.4"
41
45
  }
42
46
  }