@momsfriendlydevco/eslint-config 2.1.0 → 2.1.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.
Files changed (2) hide show
  1. package/index.js +2 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -58,6 +58,8 @@ export default [
58
58
  'unicorn/catch-error-name': ['off'],
59
59
  'unicorn/explicit-length-check': ['off'],
60
60
  'unicorn/filename-case': ['off'], // Disabled globally (gets re-enabled for .vue files)
61
+ 'unicorn/no-array-callback-reference': ['off'], // Overly aggressively attaches itself to all .find() operations
62
+ 'unicorn/no-await-expression-member': ['off'], // There is nothing wrong with `(await thing).prop`
61
63
  'unicorn/no-empty-file': ['off'], // Breaks interface files + schema files with just JSDoc
62
64
  'unicorn/prefer-logical-operator-over-ternary': ['off'],
63
65
  'unicorn/prefer-string-raw': ['off'], // Just a downright weird rule
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@momsfriendlydevco/eslint-config",
3
3
  "description": "ESLint plugin for @MomsFriendlyDevCo projects",
4
- "version": "2.1.0",
4
+ "version": "2.1.1",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "test": "eslint --config index.js test/data"