@digest/eslint-config 4.0.0 → 4.0.2

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/package.json +4 -3
  2. package/src/.eslintrc.js +2 -1
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@digest/eslint-config",
3
3
  "title": "ESLint Digest",
4
4
  "license": "LGPL-3.0-or-later",
5
- "version": "4.0.0",
5
+ "version": "4.0.2",
6
6
  "description": "Digested ESLint configurations",
7
7
  "author": "wallzero @wallzeroblog (http://wallzero.com)",
8
8
  "contributors": [
@@ -33,7 +33,7 @@
33
33
  "clean": "rimraf node_modules package-lock.json npm-debug.log"
34
34
  },
35
35
  "dependencies": {
36
- "@digest/scripts": "^3.0.0",
36
+ "@digest/scripts": "^4.0.2",
37
37
  "eslint": "^8.23.0",
38
38
  "eslint-config-canonical": "^37.0.3",
39
39
  "eslint-formatter-friendly": "^7.0.0",
@@ -42,5 +42,6 @@
42
42
  "keywords": [
43
43
  "digest",
44
44
  "eslint"
45
- ]
45
+ ],
46
+ "gitHead": "cc2261bd5a5565ac87cdbccd28e11d25cbbcb815"
46
47
  }
package/src/.eslintrc.js CHANGED
@@ -226,7 +226,8 @@ module.exports = {
226
226
  prop: 'parens-new-line',
227
227
  return: 'parens-new-line'
228
228
  }
229
- ]
229
+ ],
230
+ "react/no-unknown-property": ['error', { ignore: ['styleName'] }]
230
231
  } : {},
231
232
  jest ? {
232
233
  'jest/no-test-callback': 'off'