@w5s/eslint-config 1.4.0 → 1.4.1

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.
@@ -42,6 +42,8 @@ const config = dev_1.ESLintConfig.concat(baseConfig,
42
42
  },
43
43
  reportUnusedDisableDirectives: true,
44
44
  rules: {
45
+ // Too many errors in components
46
+ 'class-methods-use-this': 'off',
45
47
  // Annoying because it is not always wanted
46
48
  'default-case': 'off',
47
49
  // We do not want console.* in production. Disable this rule on a per line basis if needed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/eslint-config",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "ESLint configuration presets",
5
5
  "keywords": [
6
6
  "eslint",
@@ -35,10 +35,10 @@
35
35
  "@rushstack/eslint-patch": "^1.1.0",
36
36
  "@typescript-eslint/eslint-plugin": "^6.0.0",
37
37
  "@typescript-eslint/parser": "^6.0.0",
38
- "@w5s/dev": "^1.3.1",
39
- "@w5s/prettier-config": "^1.1.3",
38
+ "@w5s/dev": "^1.3.2",
39
+ "@w5s/prettier-config": "^1.1.4",
40
40
  "eslint-config-airbnb-base": "^15.0.0",
41
- "eslint-config-prettier": "^8.0.0",
41
+ "eslint-config-prettier": "^9.0.0",
42
42
  "eslint-plugin-import": "^2.25.0",
43
43
  "eslint-plugin-jest": "^27.0.0",
44
44
  "eslint-plugin-jsdoc": "^46.0.0",
@@ -69,5 +69,5 @@
69
69
  "publishConfig": {
70
70
  "access": "public"
71
71
  },
72
- "gitHead": "16aaafb3d78f8485ca110ee2842005e6b938111b"
72
+ "gitHead": "7c7006522408a5ab144f8def71edab7fface1e18"
73
73
  }
@@ -51,6 +51,8 @@ const config: eslint.Linter.Config = ESLintConfig.concat(
51
51
  },
52
52
  reportUnusedDisableDirectives: true,
53
53
  rules: {
54
+ // Too many errors in components
55
+ 'class-methods-use-this': 'off',
54
56
  // Annoying because it is not always wanted
55
57
  'default-case': 'off',
56
58
  // We do not want console.* in production. Disable this rule on a per line basis if needed