Skip to content

Commit b06a3f2

Browse files
committed
⚡ Update extensions for 2022.1 linters support
1 parent c53ce90 commit b06a3f2

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ Clone the repository anywhere:
2020
git clone [email protected]:JetBrains/qodana-action.git
2121
```
2222

23+
Install all dependencies:
24+
25+
```sh
26+
cd common && npm install && cd ../scan && npm install && cd ../vsts && npm install
27+
```
28+
2329
### GitHub action
2430

2531
`cd` into the project directory (the only action available for now is Qodana Scan) and install project dependencies:

common/qodana.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// noinspection JSUnusedGlobalSymbols
22

3-
export const VERSION = '1.0.4'
3+
export const VERSION = '1.1.0'
44
export const EXECUTABLE = 'qodana'
55
export const FAIL_THRESHOLD_OUTPUT =
66
'The number of problems exceeds the failThreshold'

scan/dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1921,7 +1921,7 @@ function getQodanaScanArgs(args, resultsDir, cacheDir, env = `cli`) {
19211921
var VERSION, EXECUTABLE, FAIL_THRESHOLD_OUTPUT, QODANA_SARIF_NAME, QodanaExitCode;
19221922
var init_qodana = __esm({
19231923
"../common/qodana.ts"() {
1924-
VERSION = "1.0.4";
1924+
VERSION = "1.1.0";
19251925
EXECUTABLE = "qodana";
19261926
FAIL_THRESHOLD_OUTPUT = "The number of problems exceeds the failThreshold";
19271927
QODANA_SARIF_NAME = "qodana.sarif.json";

vsts/QodanaScan/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function getQodanaScanArgs(args, resultsDir, cacheDir, env = `cli`) {
101101
var VERSION, EXECUTABLE, FAIL_THRESHOLD_OUTPUT, QODANA_SARIF_NAME, QodanaExitCode;
102102
var init_qodana = __esm({
103103
"../common/qodana.ts"() {
104-
VERSION = "1.0.4";
104+
VERSION = "1.1.0";
105105
EXECUTABLE = "qodana";
106106
FAIL_THRESHOLD_OUTPUT = "The number of problems exceeds the failThreshold";
107107
QODANA_SARIF_NAME = "qodana.sarif.json";

vsts/QodanaScan/task.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"author": "JetBrains",
1010
"version": {
1111
"Major": 1,
12-
"Minor": 0,
13-
"Patch": 4
12+
"Minor": 1,
13+
"Patch": 0
1414
},
1515
"demands": ["RemoteDockerServerOS -equals linux"],
1616
"instanceNameFormat": "Qodana Scan",

vsts/vss-extension.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifestVersion": 1,
33
"id": "qodana",
44
"name": "Qodana",
5-
"version": "1.0.5",
5+
"version": "1.1.0",
66
"public": true,
77
"publisher": "JetBrains",
88
"targets": [

0 commit comments

Comments
 (0)