Skip to content

Commit 9eba655

Browse files
committed
Merge branch 'v3' into feature/kubebuilder-upgrade
2 parents 116435e + 345a431 commit 9eba655

1,050 files changed

Lines changed: 72219 additions & 67042 deletions

File tree

Some content is hidden

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

.codeclimate.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2020 iteratec GmbH
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
version: "2" # required to adjust maintainability checks
26
checks:
37
file-lines:
@@ -43,5 +47,8 @@ exclude_patterns:
4347
- "**/*.test.js"
4448
- "**/*.test.ts"
4549
- "**/*.d.ts"
50+
# Generated
51+
- "**/hooks/cascading-scans/scan-helpers.js"
52+
- "**/hooks/cascading-scans/hook.js"
4653
# Auto Generated by kubernetes java client
4754
- "**/hooks/persistence-defectdojo/src/main/java/io/securecodebox/models/"

.editorconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2020 iteratec GmbH
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
# EditorConfig is awesome: https://EditorConfig.org
26

37
# top-most EditorConfig file
@@ -14,8 +18,11 @@ indent_size = 2
1418
[*.go]
1519
indent_style = tab
1620

21+
# 4 space indentation
1722
[*.py]
23+
indent_style = space
1824
indent_size = 4
1925

26+
# Tab indentation (no size specified)
2027
[Makefile]
2128
indent_style = tab

.envrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2020 iteratec GmbH
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
# shellcheck shell=sh
26
# https://direnv.net/man/direnv-stdlib.1.html
37
PATH_add bin

.eslintignore

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1+
# SPDX-FileCopyrightText: 2020 iteratec GmbH
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
**/node_modules
26
**/coverage
3-
hooks/declarative-subsequent-scans/hook.js
4-
hooks/declarative-subsequent-scans/scan-helpers.js
5-
hooks/declarative-subsequent-scans/kubernetes-label-selector.js
7+
hooks/cascading-scans/hook.js
8+
hooks/cascading-scans/scan-helpers.js
9+
hooks/cascading-scans/kubernetes-label-selector.js
10+
scanners/zap-advanced/scanner/scripts/*
11+
**/build/reports/*

.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"es6": true
77
},
88
"parserOptions": {
9-
"ecmaVersion": 2018
9+
"ecmaVersion": 2020
1010
},
1111
"extends": ["eslint:recommended", "plugin:security/recommended"],
1212
"plugins": ["prettier", "security"],

.eslintrc.json.license

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
SPDX-FileCopyrightText: 2020 iteratec GmbH
2+
3+
SPDX-License-Identifier: Apache-2.0

.github/ISSUE_TEMPLATE/question.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ Before opening a new issue, please make sure that we do not have any duplicates
1111
-->
1212

1313
## Your Question
14-
<!-- Include details about your question. -->
14+
<!-- Include details about your question. -->

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Before submitting your Pull Request, please take the time to check the points be
66
* [ ] Set a meaningful title. Format: {task_name} (closes #{issue_number}). For example: Use logger (closes #41)
77
* [ ] [Link your Pull Request to an issue](https://help.github.com/en/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue) (if applicable)
88
* [ ] Create Draft pull requests if you need clarification or an explicit review before you can continue your work item.
9-
* [ ] Make sure that your PR is not introducing _unncessary_ reformatting (e.g., introduced by on-save hooks in your IDE)
9+
* [ ] Make sure that your PR is not introducing _unnecessary_ reformatting (e.g., introduced by on-save hooks in your IDE)
1010
* [ ] Make sure each new source file you add has a correct license header.
1111
-->
1212

.github/release-drafter.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2020 iteratec GmbH
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
15
name-template: 'v$NEXT_PATCH_VERSION'
26
tag-template: 'v$NEXT_PATCH_VERSION'
37
categories:

.github/workflows/ci.yaml

Lines changed: 130 additions & 103 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)