@nfq/eslint-config 2.3.0 → 2.3.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/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [2.3.1](https://github.com/nfqde/eslint-config-nfq/compare/v2.3.0...v2.3.1) (2023-05-17)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **no-undefined:** Remove rule because it makes no sense in typescript ([#39](https://github.com/nfqde/eslint-config-nfq/issues/39)) ([6c90eca](https://github.com/nfqde/eslint-config-nfq/commit/6c90ecabbfd25501b032f266d468cdd7d483e5ce))
11
+
5
12
  ## [2.3.0](https://github.com/nfqde/eslint-config-nfq/compare/v2.2.11...v2.3.0) (2023-04-21)
6
13
 
7
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nfq/eslint-config",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "engines": {
5
5
  "node": ">= 12.0.0"
6
6
  },
@@ -219,6 +219,7 @@ module.exports = {
219
219
  'no-return-await': 'off',
220
220
  'no-shadow': 'off',
221
221
  'no-throw-literal': 'off',
222
+ 'no-undefined': 'off',
222
223
  'no-unused-expressions': 'off',
223
224
  'no-unused-vars': 'off',
224
225
  'no-use-before-define': 'off',