I am trying to import ESLint issues to SonarQube by the following:
eslint -f json -o report.json .
And then running sonar-scanner with key -Dsonar.eslint.reportPaths=report.json
.
However, SonarQube analysis reports only issues for rules provided by the repository SonarAnalyzer. How can I make SonarQube to report ESLint issues as well?