@odg/eslint-config 3.2.1 → 3.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odg/eslint-config",
3
- "version": "3.2.1",
3
+ "version": "3.2.3",
4
4
  "description": "Linter for JavaScript And Typescript project",
5
5
  "type": "module",
6
6
  "main": "index.mjs",
@@ -490,6 +490,7 @@ export default {
490
490
  "always",
491
491
  {
492
492
  exceptions: [ "-", "+" ],
493
+ block: { "balanced": true },
493
494
  },
494
495
  ], // Força espaço apos do // comentário
495
496
  "@stylistic/switch-colon-spacing": [
@@ -27,5 +27,6 @@ export default {
27
27
  "sonarjs/prefer-type-guard": [ "error" ], // Use is no return boolean type
28
28
  "sonarjs/stable-tests": [ "error" ], // Testes devem funcionar de primeira tentativa
29
29
  "sonarjs/test-check-exception": [ "error" ], // Testes devem testar exceção
30
+ "@typescript-eslint/unbound-method": [ "off" ], // Preserve bind class
30
31
  },
31
32
  };