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