@interface-technologies/eslint-config 4.3.2 → 4.3.5

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md ADDED
@@ -0,0 +1,3 @@
1
+ ## 4.3.4
2
+
3
+ - Disable `@typescript-eslint/no-misused-promises`
package/index.cjs CHANGED
@@ -76,6 +76,10 @@ module.exports = {
76
76
  'warn',
77
77
  { allowExpressions: true },
78
78
  ],
79
+
80
+ // Annoying without adding much real value
81
+ '@typescript-eslint/no-misused-promises': 'off',
82
+
79
83
  '@typescript-eslint/no-non-null-assertion': 'off',
80
84
  '@typescript-eslint/no-shadow': 'off',
81
85
  '@typescript-eslint/no-use-before-define': [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@interface-technologies/eslint-config",
3
- "version": "4.3.2",
3
+ "version": "4.3.5",
4
4
  "description": "ESLint config for projects using TypeScript and React.",
5
5
  "homepage": "https://github.com/srmagura/iti-react",
6
6
  "license": "MIT",