From 90734137f4876599eb0033c500dd645e21794145 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Corr=C3=AAa=20da=20Silva?= <78980992+dartmol203@users.noreply.github.com> Date: Sun, 1 Dec 2024 22:46:07 -0300 Subject: [PATCH] fix#83: Update sonar-projects.properties --- sonar-projects.properties | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/sonar-projects.properties b/sonar-projects.properties index 91b17e3..b41edf8 100644 --- a/sonar-projects.properties +++ b/sonar-projects.properties @@ -1,14 +1,13 @@ +# SonarCloud project and organization sonar.projectKey=fga-eps-mds_2024.2-ARANDU-APP sonar.organization=fga-eps-mds-1 -# Path to the source code directory (Flutter app source code is in ./lib) +# Path to source code and test directories sonar.sources=./lib - -# Path to the test directory (Flutter tests are usually in the ./test directory) sonar.tests=./test -# Set the language to Dart for Flutter app -sonar.language=dart +# Path to the coverage report generated by flutter test +sonar.javascript.lcov.reportPaths=coverage/lcov.info -# Exclude specific directories and test files -sonar.exclusions=**/test/**, **/assets/**, .github/**, scripts/**, **/*.test.dart +# Exclude specific directories and files from analysis +sonar.exclusions=**/assets/**, .github/**, scripts/**, **/*.g.dart