@daldalso/eslint-plugin 1.2.3 → 1.2.4

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.
@@ -324,6 +324,9 @@ function getScore(node) {
324
324
  case "private":
325
325
  accessModifierScore = 1 /* ScoreValue.PRIVATE */;
326
326
  break;
327
+ case undefined:
328
+ accessModifierScore = 4 /* ScoreValue.IMPLICITLY_PUBLIC */;
329
+ break;
327
330
  default: throw Error("Unhandled accessibility: ".concat(node.accessibility));
328
331
  }
329
332
  else
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daldalso/eslint-plugin",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "main": "./dist/index.js",
5
5
  "repository": {
6
6
  "url": "git+https://github.com/JJoriping/eslint-plugin.git"