-
Notifications
You must be signed in to change notification settings - Fork 1
Init qlty #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Init qlty #13
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| * | ||
| !configs | ||
| !configs/** | ||
| !hooks | ||
| !hooks/** | ||
| !qlty.toml | ||
| !.gitignore |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,86 @@ | ||
| # This file was automatically generated by `qlty init`. | ||
| # You can modify it to suit your needs. | ||
| # We recommend you to commit this file to your repository. | ||
| # | ||
| # This configuration is used by both Qlty CLI and Qlty Cloud. | ||
| # | ||
| # Qlty CLI -- Code quality toolkit for developers | ||
| # Qlty Cloud -- Fully automated Code Health Platform | ||
| # | ||
| # Try Qlty Cloud: https://qlty.sh | ||
| # | ||
| # For a guide to configuration, visit https://qlty.sh/d/config | ||
| # Or for a full reference, visit https://qlty.sh/d/qlty-toml | ||
| config_version = "0" | ||
|
|
||
| exclude_patterns = [ | ||
| "*_min.*", | ||
| "*-min.*", | ||
| "*.min.*", | ||
| "**/.yarn/**", | ||
| "**/*.d.ts", | ||
| "**/assets/**", | ||
| "**/bower_components/**", | ||
| "**/build/**", | ||
| "**/cache/**", | ||
| "**/config/**", | ||
| "**/db/**", | ||
| "**/deps/**", | ||
| "**/dist/**", | ||
| "**/extern/**", | ||
| "**/external/**", | ||
| "**/generated/**", | ||
| "**/Godeps/**", | ||
| "**/gradlew/**", | ||
| "**/mvnw/**", | ||
| "**/node_modules/**", | ||
| "**/protos/**", | ||
| "**/seed/**", | ||
| "**/target/**", | ||
| "**/templates/**", | ||
| "**/testdata/**", | ||
| "**/vendor/**", | ||
| ] | ||
|
|
||
| test_patterns = [ | ||
| "**/test/**", | ||
| "**/spec/**", | ||
| "**/*.test.*", | ||
| "**/*.spec.*", | ||
| "**/*_test.*", | ||
| "**/*_spec.*", | ||
| "**/test_*.*", | ||
| "**/spec_*.*", | ||
| ] | ||
|
|
||
| [smells] | ||
| mode = "comment" | ||
|
|
||
| [[source]] | ||
| name = "default" | ||
| default = true | ||
|
|
||
|
|
||
| [[plugin]] | ||
| name = "actionlint" | ||
|
|
||
| [[plugin]] | ||
| name = "osv-scanner" | ||
|
|
||
|
Comment on lines
+65
to
+69
|
||
| [[plugin]] | ||
| name = "ripgrep" | ||
| mode = "comment" | ||
|
|
||
| [[plugin]] | ||
| name = "rubocop" | ||
| version = "1.31.2" | ||
|
|
||
| [[plugin]] | ||
| name = "trivy" | ||
| drivers = [ | ||
| "config", | ||
| "fs-vuln", | ||
| ] | ||
|
Comment on lines
+79
to
+83
|
||
|
|
||
| [[plugin]] | ||
| name = "trufflehog" | ||
|
Comment on lines
+85
to
+86
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The header comment has a grammatical issue: "We recommend you to commit this file" reads awkwardly. Consider rephrasing to "We recommend committing this file to your repository" (or similar) for clarity.