@plumeria/eslint-plugin 11.1.1 → 11.1.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.
@@ -1504,7 +1504,7 @@ function getValidator(key) {
1504
1504
  validator = (v) => r.test(v);
1505
1505
  }
1506
1506
  else if (multipleValueProperties.includes(key)) {
1507
- const r = new RegExp(`^(${lvp})( (?!\\s)(${lvp})){0,${(valueCountMap[key] || 1) - 1}}$`);
1507
+ const r = new RegExp(`^(${lvp})( (?!\\s)(${lvp})){0,${valueCountMap[key] - 1}}$`);
1508
1508
  validator = (v) => r.test(v);
1509
1509
  }
1510
1510
  validatorCache.set(key, validator);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plumeria/eslint-plugin",
3
- "version": "11.1.1",
3
+ "version": "11.1.3",
4
4
  "description": "Plumeria ESLint plugin",
5
5
  "author": "Refirst 11",
6
6
  "license": "MIT",