@whitetrefoil/eslint-config 0.24.0 → 0.24.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.
package/README.md CHANGED
@@ -156,6 +156,10 @@ See Also
156
156
  Changelog
157
157
  =========
158
158
 
159
+ ### v0.24.1
160
+
161
+ * Disable `"prefer-object-has-own"` for TS due to TS hasn't support it yet.
162
+
159
163
  ### v0.24.0
160
164
 
161
165
  * Upgrade rules;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whitetrefoil/eslint-config",
3
- "version": "0.24.0",
3
+ "version": "0.24.1",
4
4
  "author": "WhiteTrefoil <whitetrefoil@gmail.com>",
5
5
  "license": "Unlicense",
6
6
  "engines": {
@@ -250,5 +250,8 @@ module.exports = {
250
250
  '@typescript-eslint/space-before-function-paren': [0],
251
251
  'space-infix-ops' : [0],
252
252
  '@typescript-eslint/space-infix-ops' : [0, { int32Hint: true }],
253
+
254
+ // Disable this rule due to TS hasn't supported it yet
255
+ 'prefer-object-has-own': [0],
253
256
  },
254
257
  }