File tree Expand file tree Collapse file tree 3 files changed +57
-263
lines changed
Expand file tree Collapse file tree 3 files changed +57
-263
lines changed Original file line number Diff line number Diff line change 1+ # This file configures Qlty code quality and coverage tools
2+ # For configuration guide: https://qlty.sh/d/config
3+ # For full reference: https://qlty.sh/d/qlty-toml
4+
5+ config_version = " 0"
6+
7+ exclude_patterns = [
8+ " *_min.*" ,
9+ " *-min.*" ,
10+ " *.min.*" ,
11+ " **/*.d.ts" ,
12+ " **/node_modules/**" ,
13+ " **/vendor/**" ,
14+ " **/coverage/**" ,
15+ " **/tmp/**" ,
16+ " **/pkg/**" ,
17+ " **/gemfiles/**" ,
18+ " **/.bundle/**" ,
19+ ]
20+
21+ test_patterns = [
22+ " **/test/**" ,
23+ " **/spec/**" ,
24+ " **/*.test.*" ,
25+ " **/*.spec.*" ,
26+ " **/*_test.*" ,
27+ " **/*_spec.*" ,
28+ ]
29+
30+ [smells ]
31+ mode = " comment"
32+
33+ [[source ]]
34+ name = " default"
35+ default = true
36+
37+ [[plugin ]]
38+ name = " actionlint"
39+
40+ [[plugin ]]
41+ name = " markdownlint"
42+ drivers = [" lint" ]
43+ mode = " comment"
44+
45+ [[plugin ]]
46+ name = " ripgrep"
47+ mode = " comment"
48+
49+ [[plugin ]]
50+ name = " trivy"
51+ drivers = [" config" ]
52+
53+ [[plugin ]]
54+ name = " trufflehog"
55+
56+ [[plugin ]]
57+ name = " yamllint"
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments