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
rules: | |
- id: com.example.akiko.1 | |
pattern: | |
regexp: (func) (foo|bar)\([^\(]*\) | |
message: | | |
fooやbarといった関数名は使わないでください。 | |
意味のある関数名を定義しましょう。 | |
glob: | |
- "**/*.go" |
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
rules: | |
# Inspired by this rule: https://github.com/Skyscanner/sonar-secrets/blob/v1.3.0/java/src/main/java/org/sonar/skyscanner/java/checks/PrivateKeys.java | |
- id: review.sider.general.security.private_keys.rsa | |
pattern: | |
token: "-----BEGIN RSA PRIVATE KEY-----" | |
case_sensitive: true | |
message: Do not put private keys in this repository. | |
fail: | |
- "-----BEGIN RSA PRIVATE KEY-----" | |
pass: |
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
rules: | |
# Inspired by this rule: https://github.com/Skyscanner/sonar-secrets/blob/v1.3.0/java/src/main/java/org/sonar/skyscanner/java/checks/PrivateKeys.java | |
- id: review.sider.general.security.private_keys | |
pattern: | |
- "-----BEGIN RSA PRIVATE KEY-----" | |
- "-----BEGIN DSA PRIVATE KEY-----" | |
- "-----BEGIN EC PRIVATE KEY-----" | |
- "-----BEGIN OPENSSH PRIVATE KEY-----" | |
- "-----BEGIN PRIVATE KEY-----" | |
message: Do not put private keys in this repository. |
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
docker pull sider/runner_brakeman | |
docker pull sider/runner_checkstyle | |
docker pull sider/runner_clang_tidy | |
docker pull sider/runner_coffeelint | |
docker pull sider/runner_cppcheck | |
docker pull sider/runner_cpplint | |
docker pull sider/runner_detekt | |
docker pull sider/runner_eslint | |
docker pull sider/runner_flake8 | |
docker pull sider/runner_fxcop |
OlderNewer