You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i am using gulp-sonar to run on typescript files.
Are there ways for me to use options such as ts.tslint.typeCheck and ts.tslint.projectPath?
for example
the projectPath, configPath and typeCheck options are used as SonarTsPlugin described to resolve a warning issue with a TS rule. Pablissimo/SonarTsPlugin#158
I see the debug info when I run gulp-sonar is that the command to execute tslint is: Executing TsLint with command: /node_modules/tslint/bin/tslint --format json --config tslint.json followed by the list of files. So it seems to be ignoring the ts.tslint rules I have.
The expected/preferred command to run with those parameters defined would be: /node_modules/tslint/bin/tslint --type-check --project tsconfig.json -c tslint.json
anyway I can achieve this using gulp-sonar still?
The text was updated successfully, but these errors were encountered:
i am using gulp-sonar to run on typescript files.
Are there ways for me to use options such as
ts.tslint.typeCheck
andts.tslint.projectPath
?for example
the projectPath, configPath and typeCheck options are used as SonarTsPlugin described to resolve a warning issue with a TS rule. Pablissimo/SonarTsPlugin#158
I see the debug info when I run gulp-sonar is that the command to execute tslint is:
Executing TsLint with command: /node_modules/tslint/bin/tslint --format json --config tslint.json
followed by the list of files. So it seems to be ignoring the ts.tslint rules I have.The expected/preferred command to run with those parameters defined would be:
/node_modules/tslint/bin/tslint --type-check --project tsconfig.json -c tslint.json
anyway I can achieve this using gulp-sonar still?
The text was updated successfully, but these errors were encountered: