this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Pre-commit config and linting files

+73
+23
.github/lint/.markdownlint.yaml
··· 1 + --- 2 + default: true 3 + 4 + # MD013/line-length - Line length 5 + MD013: 6 + # Number of characters 7 + line_length: 240 8 + # Number of characters for headings 9 + heading_line_length: 80 10 + # Number of characters for code blocks 11 + code_block_line_length: 80 12 + # Include code blocks 13 + code_blocks: true 14 + # Include tables 15 + tables: true 16 + # Include headings 17 + headings: true 18 + # Include headings 19 + headers: true 20 + # Strict length checking 21 + strict: false 22 + # Stern length checking 23 + stern: false
+3
.github/lint/.prettierignore
··· 1 + *.enc.* 2 + *.sops.* 3 + gotk-components.yaml
+18
.github/lint/.yamllint.yaml
··· 1 + ignore: | 2 + *.enc.* 3 + *.sops.* 4 + gotk-components.yaml 5 + extends: default 6 + rules: 7 + truthy: 8 + allowed-values: ["true", "false", "on"] 9 + comments: 10 + min-spaces-from-content: 1 11 + line-length: disable 12 + braces: 13 + min-spaces-inside: 0 14 + max-spaces-inside: 1 15 + brackets: 16 + min-spaces-inside: 0 17 + max-spaces-inside: 0 18 + indentation: enable
+29
.pre-commit-config.yaml
··· 1 + --- 2 + fail_fast: false 3 + repos: 4 + - repo: https://github.com/adrienverge/yamllint 5 + rev: v1.26.2 6 + hooks: 7 + - args: 8 + - --config-file 9 + - .github/lint/.yamllint.yaml 10 + id: yamllint 11 + - repo: https://github.com/pre-commit/pre-commit-hooks 12 + rev: v4.0.1 13 + hooks: 14 + - id: trailing-whitespace 15 + - id: end-of-file-fixer 16 + - id: mixed-line-ending 17 + - repo: https://github.com/Lucas-C/pre-commit-hooks 18 + rev: v1.1.10 19 + hooks: 20 + - id: remove-crlf 21 + - id: remove-tabs 22 + - repo: https://github.com/sirosen/fix-smartquotes 23 + rev: 0.2.0 24 + hooks: 25 + - id: fix-smartquotes 26 + - repo: https://github.com/k8s-at-home/sops-pre-commit 27 + rev: v2.0.3 28 + hooks: 29 + - id: forbid-secrets