Skip to content

Commit 521fc7d

Browse files
authored
Merge pull request #51 from lstreckeisen/CMI-105-Make-sure-warnings-are-reported-as-errors
Cmi 105 make sure warnings are reported as errors
2 parents c7093bb + a94dcd2 commit 521fc7d

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
run: yarn bundle:language-server
5959

6060
- name: Qodana Scan
61-
uses: JetBrains/qodana-action@v2024.3
61+
uses: JetBrains/qodana-action@v2025.1
6262
with:
6363
pr-mode: false
6464
args: --baseline,qodana.serif.json,--fail-threshold,2

.yarn/install-state.gz

3 Bytes
Binary file not shown.

qodana.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
version: "1.0"
2-
linter: jetbrains/qodana-js:2024.3
2+
linter: jetbrains/qodana-js:2025.1
33
profile:
44
name: qodana.recommended
55
include:

tsconfig.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@
1313
"noUnusedLocals": true,
1414
"noImplicitReturns": true,
1515
"noImplicitOverride": true,
16+
"noFallthroughCasesInSwitch": true,
17+
"strictNullChecks": true,
18+
"strictBindCallApply": true,
19+
"strictFunctionTypes": true,
20+
"strictPropertyInitialization": true,
1621
"moduleResolution": "Node16",
1722
"esModuleInterop": true,
1823
"skipLibCheck": true,

0 commit comments

Comments
 (0)