@stanlemon/eslint-config 0.1.4 → 0.1.7

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/index.js +3 -0
  2. package/package.json +10 -10
package/index.js CHANGED
@@ -58,6 +58,9 @@ module.exports = {
58
58
  },
59
59
  },
60
60
  rules: {
61
+ // Empty functions are ok, especially for default values
62
+ "no-empty-function": "off",
63
+ "@typescript-eslint/no-empty-function": "off",
61
64
  // Requires 'public' before public methods
62
65
  "@typescript-eslint/explicit-member-accessibility": "off",
63
66
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stanlemon/eslint-config",
3
- "version": "0.1.4",
3
+ "version": "0.1.7",
4
4
  "description": "My typical eslint setup, but without all the copy and paste.",
5
5
  "keywords": [
6
6
  "eslint"
@@ -8,7 +8,7 @@
8
8
  "author": "Stan Lemon <stanlemon@users.noreply.github.com>",
9
9
  "license": "MIT",
10
10
  "engines": {
11
- "node": ">=17.0"
11
+ "node": ">=16.13.0"
12
12
  },
13
13
  "type": "commonjs",
14
14
  "scripts": {
@@ -16,17 +16,17 @@
16
16
  "lint:format": "eslint --fix --ext js,jsx,ts,tsx ./"
17
17
  },
18
18
  "dependencies": {
19
- "@babel/eslint-parser": "^7.16.5",
20
- "@typescript-eslint/eslint-plugin": "^5.9.0",
21
- "@typescript-eslint/parser": "^5.9.0",
22
- "eslint": "^8.6.0",
23
- "eslint-config-prettier": "^8.3.0",
19
+ "@babel/eslint-parser": "^7.17.0",
20
+ "@typescript-eslint/eslint-plugin": "^5.16.0",
21
+ "@typescript-eslint/parser": "^5.16.0",
22
+ "eslint": "^8.12.0",
23
+ "eslint-config-prettier": "^8.5.0",
24
24
  "eslint-config-react-app": "^7.0.0",
25
25
  "eslint-plugin-import": "^2.25.4",
26
- "eslint-plugin-jest": "^25.3.4",
26
+ "eslint-plugin-jest": "^26.1.3",
27
27
  "eslint-plugin-jsx-a11y": "^6.5.1",
28
28
  "eslint-plugin-prettier": "^4.0.0",
29
- "eslint-plugin-react": "^7.28.0",
29
+ "eslint-plugin-react": "^7.29.4",
30
30
  "eslint-plugin-react-hooks": "^4.3.0"
31
31
  }
32
- }
32
+ }