@keragon/connector-cli 0.0.13 → 0.0.14

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.
@@ -49,11 +49,16 @@ export default [
49
49
  '@typescript-eslint': typescript
50
50
  },
51
51
  rules: {
52
+ 'no-unused-vars': 'off',
52
53
  '@typescript-eslint/no-unused-vars': [
53
54
  'error',
54
55
  {
56
+ args: 'all',
55
57
  argsIgnorePattern: '^_',
56
- varsIgnorePattern: '^_'
58
+ varsIgnorePattern: '^_',
59
+ caughtErrorsIgnorePattern: '^_',
60
+ destructuredArrayIgnorePattern: '^_',
61
+ ignoreRestSiblings: false
57
62
  }
58
63
  ],
59
64
  'no-console': 'error',
@@ -62,7 +67,7 @@ export default [
62
67
  'no-var': 'error',
63
68
  'no-extra-semi': 'error',
64
69
  quotes: ['warn', 'single', { avoidEscape: true }],
65
- 'indent': ['error', 2]
70
+ 'indent': ['error', 2, { 'SwitchCase': 1 }]
66
71
  }
67
72
  },
68
73
 
@@ -24,7 +24,7 @@
24
24
  "@typescript-eslint/parser": "^8.39.0",
25
25
  "@typescript-eslint/eslint-plugin": "^8.39.0",
26
26
  "eslint": "^9.32.0",
27
- "typescript": "5.6.0",
27
+ "typescript": "^5.9.2",
28
28
  "jsonc-eslint-parser": "^2.4.0",
29
29
  "eslint-plugin-jsonc": "^2.20.1"
30
30
  }
@@ -7,7 +7,7 @@
7
7
  "noImplicitReturns": true,
8
8
  "noFallthroughCasesInSwitch": true,
9
9
  "resolveJsonModule": true,
10
- "esModuleInterop": true,
10
+ "esModuleInterop": true
11
11
  },
12
12
  "files": [],
13
13
  "include": [],
@@ -5,7 +5,7 @@
5
5
  "declaration": true,
6
6
  "types": [
7
7
  "node"
8
- ],
8
+ ]
9
9
  },
10
10
  "include": [
11
11
  "src/**/*.ts"