v2
This commit is contained in:
10
.github/linters/.gitleaks.toml
vendored
Normal file
10
.github/linters/.gitleaks.toml
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
title = "gitleaks config"
|
||||
|
||||
[extend]
|
||||
# useDefault will extend the base configuration with the default gitleaks config:
|
||||
# https://github.com/zricethezav/gitleaks/blob/master/config/gitleaks.toml
|
||||
useDefault = false
|
||||
|
||||
[allowlist]
|
||||
description = "global allowlist. whitelisting paths"
|
||||
#paths = ['''/github/workspace/epicgamesfree/templates/config.json''']
|
||||
8
.github/linters/.hadolint.yaml
vendored
Normal file
8
.github/linters/.hadolint.yaml
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
ignored:
|
||||
- DL3002
|
||||
- DL3006
|
||||
- DL3007
|
||||
- DL3008
|
||||
- DL3009
|
||||
- DL3018
|
||||
9
.github/linters/.jscpd.json
vendored
Normal file
9
.github/linters/.jscpd.json
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"threshold": 0,
|
||||
"reporters": ["html", "markdown"],
|
||||
"ignore": [
|
||||
"**/.git/**",
|
||||
"**/*.md",
|
||||
"**/.github/**"
|
||||
]
|
||||
}
|
||||
35
.github/linters/.markdown-lint.yml
vendored
Normal file
35
.github/linters/.markdown-lint.yml
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
---
|
||||
###########################
|
||||
###########################
|
||||
## Markdown Linter rules ##
|
||||
###########################
|
||||
###########################
|
||||
|
||||
# Linter rules doc:
|
||||
# - https://github.com/DavidAnson/markdownlint
|
||||
#
|
||||
# Note:
|
||||
# To comment out a single error:
|
||||
# <!-- markdownlint-disable -->
|
||||
# any violations you want
|
||||
# <!-- markdownlint-restore -->
|
||||
#
|
||||
|
||||
###############
|
||||
# Rules by id #
|
||||
###############
|
||||
MD001: false # Heading levels should only increment by one level at a time
|
||||
MD002: false # First header should be a h1 header
|
||||
MD007: # Unordered list indentation
|
||||
indent: 2
|
||||
MD012: false # Multiple consecutive blank lines
|
||||
MD013: false # Line length
|
||||
MD025: false # Multiple top level headings in the same document
|
||||
MD034: false # Bare url
|
||||
MD041: false # First line in file should be a top level header
|
||||
MD053: false # Check links are used
|
||||
|
||||
#################
|
||||
# Rules by tags #
|
||||
#################
|
||||
blank_lines: false # Error on blank lines
|
||||
Reference in New Issue
Block a user