From dd9bfdb41e8f40e8637fa13966bf27b740e685e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Victor=20Gon=C3=A7alves?= Date: Tue, 20 Aug 2024 00:46:48 -0300 Subject: [PATCH] chore: uses eslint instead of tslint on sonar properties --- .github/workflows/build.yml | 2 +- sonar-project.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 37dfb31e..bfab707d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,7 +36,7 @@ jobs: # run: npm run test:cov - name: Linter - run: yarn eslint . --format json --output-file reports/tslint-report.json + run: yarn eslint . --format json --output-file reports/eslint-report.json - name: Test and coverage run: yarn jest --coverage diff --git a/sonar-project.properties b/sonar-project.properties index 494982d6..ef2759be 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -19,4 +19,4 @@ sonar.junit.reportPaths=junit.xml sonar.tests=src sonar.test.inclusions=**/*.spec.ts,**/*.spec.tsx,**/*.spec.js,**/*.test.ts,**/*.test.tsx sonar.testExecutionReportPaths=reports/sonar-report.xml -sonar.typescript.tslint.reportPaths=reports/tslint-report.json +sonar.typescript.eslint.reportPaths=reports/eslint-report.json