-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathsonar-project.properties
More file actions
25 lines (20 loc) · 1.11 KB
/
sonar-project.properties
File metadata and controls
25 lines (20 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
sonar.organization=techpivot
sonar.projectKey=terraform-module-releaser
sonar.projectName=Terraform Module Releaser
sonar.projectDescription=A GitHub Action for managing Terraform modules in GitHub monorepos, automating versioning, releases, and documentation.
sonar.sourceEncoding=UTF-8
# Path to sources
sonar.sources=src/
# Inclusions for test files.
sonar.tests=__tests__/
# Test coverage path in GitHub action
sonar.javascript.lcov.reportPaths=./coverage/lcov.info
# Issue exclusions
# S5852: "Regular expressions should not be vulnerable to super-linear backtracking"
# The headerPattern and breakingHeaderPattern regexes in commit-analyzer.ts are taken
# verbatim from the conventional-changelog-conventionalcommits preset and only run
# against short, single-line commit headers — not arbitrary user input.
# @see https://github.com/conventional-changelog/conventional-changelog/blob/master/packages/conventional-changelog-conventionalcommits/src/parser.js
sonar.issue.ignore.multicriteria=e1
sonar.issue.ignore.multicriteria.e1.ruleKey=typescript:S5852
sonar.issue.ignore.multicriteria.e1.resourceKey=src/commit-analyzer.ts