Created
June 12, 2017 17:35
-
-
Save MatthieuScarset/25e2c9b53efd33840787acab6f0df419 to your computer and use it in GitHub Desktop.
Default Sonar properties for Drupal 8 project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# must be unique in a given SonarQube instance | |
sonar.projectKey=ONE80WEB:ONE80WEB | |
# this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1. | |
sonar.projectName=WEBSITE | |
sonar.projectVersion=1.0 | |
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. | |
# This property is optional if sonar.modules is set. | |
sonar.sources=./web | |
# Exclude files and folders | |
# sonar.inclusions= | |
sonar.exclusions=**/vendor/**,**/node_modules/**,**/core/**,**/sites/**,**/contrib/**,**/drush/**,**/files/**,**/default* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment