Skip to content

Commit 0e6f276

Browse files
authored
#14 fix typo, bring up to speed with template repo (#31)
1 parent a221308 commit 0e6f276

41 files changed

Lines changed: 727 additions & 175 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[flake8]
22
extend-ignore =
3-
# E203 and E704 needed for black
3+
# E203 and E704 needed for black
44
E203,
55
E704,
66
E501,

.github/dependabot.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,9 @@ updates:
1515
- "senzing-factory/*"
1616
schedule:
1717
interval: "daily"
18-
- package-ecosystem: "docker"
19-
cooldown:
20-
default-days: 21
21-
directory: "/"
22-
schedule:
23-
interval: "daily"
2418
- package-ecosystem: "pip"
19+
assignees:
20+
- "docktermj"
2521
cooldown:
2622
default-days: 21
2723
directory: "/"

.github/linters/.checkov.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
quiet: true
2+
skip-check:
3+
- CKV_DOCKER_7

.github/linters/.jscpd.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
{
2-
"threshold": 8
3-
}
1+
{}

.github/linters/.textlintrc.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"rules": {
3+
"terminology": {
4+
"terms": ["README"]
5+
}
6+
}
7+
}

.github/linters/.yaml-lint.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
extends: default
33

44
rules:
5+
document-start: disable
6+
comments:
7+
min-spaces-from-content: 1
58
comments-indentation: disable
69
line-length:
710
level: warning

.github/linters/README.md

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Linters
2+
3+
## .checkov.yaml
4+
5+
- [.checkov.yaml]
6+
- Used by [lint-workflows.yaml]
7+
- [checkov]
8+
- [checkov configuration]
9+
10+
## .jscpd.json
11+
12+
- [.jscpd.json]
13+
- Used by [lint-workflows.yaml]
14+
- [jscpd]
15+
- [jscpd configuration]
16+
- Example:
17+
18+
```json
19+
{
20+
"ignore": ["**/*.py,**/python-test*.yaml"],
21+
"threshold": 10
22+
}
23+
```
24+
25+
## .yaml-lint.yml
26+
27+
- [.yaml-lint.yml]
28+
- Used by [lint-workflows.yaml]
29+
- [yaml-lint]
30+
- [yaml-lint configuration]
31+
32+
## bearer.yml
33+
34+
- [bearer.yml]
35+
- Used by [bearer.yaml]
36+
- [bearer]
37+
- [bearer repository]
38+
- [bearer configuration]
39+
40+
## zizmor.yaml
41+
42+
- [zizmor.yaml]
43+
44+
[.checkov.yaml]: .checkov.yaml
45+
[.jscpd.json]: .jscpd.json
46+
[.yaml-lint.yml]: .yaml-lint.yml
47+
[bearer configuration]: https://docs.bearer.com/reference/config/
48+
[bearer repository]: https://github.com/Bearer/bearer/tree/main
49+
[bearer.yaml]: ../workflows/README.md#beareryaml
50+
[bearer.yml]: bearer.yml
51+
[bearer]: https://docs.bearer.com/
52+
[checkov configuration]: https://www.checkov.io/2.Basics/CLI%20Command%20Reference.html
53+
[checkov]: https://www.checkov.io/
54+
[jscpd configuration]: https://github.com/kucherenko/jscpd/tree/master/apps/jscpd#options
55+
[jscpd]: https://github.com/kucherenko/jscpd
56+
[lint-workflows.yaml]: ../workflows/README.md#lint-workflowsyaml
57+
[yaml-lint configuration]: https://yamllint.readthedocs.io/en/stable/configuration.html
58+
[yaml-lint]: https://github.com/adrienverge/yamllint
59+
[zizmor.yaml]: zizmor.yaml

.github/linters/bearer.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
rule:
2+
skip-rule: []

.github/linters/zizmor.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
rules:
2+
secrets-outside-env:
3+
disable: true
24
unpinned-uses:
35
config:
46
policies:

.github/renovate.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:recommended",
5+
":disableDependencyDashboard",
6+
"docker:pinDigests"
7+
],
8+
"enabledManagers": ["dockerfile", "docker-compose"],
9+
"schedule": ["on sunday"],
10+
"prCreation": "not-pending",
11+
"packageRules": [
12+
{
13+
"matchUpdateTypes": ["major", "minor", "patch"],
14+
"minimumReleaseAge": "21 days",
15+
"matchPackageNames": ["!senzing/{/,}**"]
16+
}
17+
]
18+
}

0 commit comments

Comments
 (0)