Skip to content

Commit

Permalink
feat(sonarcloud): more defined config file (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinezanardi committed Mar 21, 2023
1 parent 54a047e commit 31c835c
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
# General
sonar.organization=antoinezanardi
sonar.projectKey=antoinezanardi_werewolves-assistant-api-next
sonar.projectDescription=Werewolves Assistant API provides over HTTP requests a way of manage Werewolves games to help the game master.
sonar.links.homepage=https://github.com/antoinezanardi/werewolves-assistant-api-next
sonar.links.ci=https://github.com/antoinezanardi/werewolves-assistant-api-next/actions
sonar.links.issue=https://github.com/antoinezanardi/werewolves-assistant-api-next/issues
sonar.links.scm=https://github.com/antoinezanardi/werewolves-assistant-api-next

# Sources
sonar.sources=src
sonar.sources=src/
sonar.exclusions=node_modules/**/*

# Tests
sonar.tests=tests
sonar.tests=tests/
sonar.test.inclusions=**/*.spec.*s, **/*.e2e-spec.*s
sonar.javascript.lcov.reportPaths=./tests/coverage/lcov.info

# Coverage
sonar.coverage.exclusions=./src/main.ts

# Encoding
sonar.sourceEncoding=UTF-8

0 comments on commit 31c835c

Please sign in to comment.