sonar.properties 518 B

1234567891011121314151617181920
  1. sonar-project.properties
  2. # must be unique in a given SonarQube instance
  3. sonar.projectKey=FatboarProject
  4. # --- optional properties --
  5. # defaults to project key
  6. sonar.projectName=FatboarProject
  7. # defaults to 'not provided'
  8. sonar.projectVersion=1.0
  9. # Path is relative to the sonar-project.properties file. Defaults to .
  10. sonar.sources=.
  11. # The value of the property must be the key of the language.
  12. sonar.language=js
  13. # Encoding of the source code. Default is default system encoding
  14. sonar.sourceEncoding=UTF-8