@foray1010/eslint-config 7.6.0 → 7.6.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
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [7.6.1](https://github.com/foray1010/common-presets/compare/@foray1010/eslint-config@7.6.0...@foray1010/eslint-config@7.6.1) (2022-09-30)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **eslint-config:** disable functional/prefer-tacit ([e921649](https://github.com/foray1010/common-presets/commit/e921649d17802d3e866b075b1a5be39200e96991))
11
+
6
12
  ## [7.6.0](https://github.com/foray1010/common-presets/compare/@foray1010/eslint-config@7.5.0...@foray1010/eslint-config@7.6.0) (2022-09-30)
7
13
 
8
14
  ### Features
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@foray1010/eslint-config",
4
- "version": "7.6.0",
4
+ "version": "7.6.1",
5
5
  "homepage": "https://github.com/foray1010/common-presets/tree/master/packages/eslint-config#readme",
6
6
  "bugs": "https://github.com/foray1010/common-presets/issues",
7
7
  "repository": {
@@ -56,5 +56,5 @@
56
56
  "publishConfig": {
57
57
  "access": "public"
58
58
  },
59
- "gitHead": "78887040561cbee1de447df3c885414f81cbefba"
59
+ "gitHead": "2db2510ae90fd5b609aaad1e8c41934d29e310b7"
60
60
  }
package/presets/base.js CHANGED
@@ -255,7 +255,8 @@ module.exports = {
255
255
  },
256
256
  ],
257
257
  // forbid unnecessary callback wrapper
258
- 'functional/prefer-tacit': 'error',
258
+ // disabled due to https://github.com/eslint-functional/eslint-plugin-functional/issues/486
259
+ // 'functional/prefer-tacit': 'error',
259
260
  },
260
261
  overrides: [
261
262
  {