eslint-config-heck 3.0.0-beta.2 → 3.0.0-beta.3

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/node.mjs CHANGED
@@ -123,6 +123,7 @@ export default [
123
123
  },
124
124
  ],
125
125
  "no-use-before-define": ["error", "nofunc"],
126
+ "no-useless-assignment": "error",
126
127
  "no-useless-backreference": "error",
127
128
  "require-atomic-updates": "error",
128
129
  "use-isnan": "error",
package/nodeWithBiome.mjs CHANGED
@@ -103,6 +103,7 @@ export default [
103
103
  "no-unused-private-class-members": "off",
104
104
  "no-unused-vars": "off",
105
105
  "no-use-before-define": ["error", "nofunc"],
106
+ "no-useless-assignment": "error",
106
107
  "no-useless-backreference": "error",
107
108
  "require-atomic-updates": "error",
108
109
  "use-isnan": "off",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-heck",
3
- "version": "3.0.0-beta.2",
3
+ "version": "3.0.0-beta.3",
4
4
  "description": "Contains an ESLint configuration for ES2015+, TypeScript, and React.",
5
5
  "type": "module",
6
6
  "main": "index.js",