-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e0b8d03
commit 8ff91dd
Showing
5 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,5 @@ cov-int/ | |
|
||
/docs/osbuild.1 | ||
/docs/osbuild-manifest.5 | ||
|
||
dictionary.dic |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# See https://pre-commit.com for more information | ||
# See https://pre-commit.com/hooks.html for more hooks | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.6.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
exclude: ".*\\.md$" | ||
- id: end-of-file-fixer | ||
- id: check-yaml | ||
- id: check-json | ||
files: "Schutzfile|.*\\.json" | ||
types: [] | ||
- id: check-added-large-files | ||
- repo: https://github.com/adrienverge/yamllint | ||
rev: v1.35.1 | ||
hooks: | ||
- id: yamllint | ||
args: [--strict] | ||
- repo: https://github.com/schuellerf/pre-commit-pyspelling | ||
rev: 0.1.0 | ||
hooks: | ||
- id: pyspelling | ||
args: ["--config", ".spellcheck.yml"] | ||
- repo: https://github.com/hhatto/autopep8 | ||
rev: v2.3.0 | ||
hooks: | ||
- id: autopep8 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
DB's | ||
discoverable | ||
distros | ||
GH | ||
Github | ||
Gitlab | ||
JSON | ||
osbuild | ||
OSbuild | ||
ppc | ||
repo | ||
rhel | ||
Schutzbot | ||
th | ||
toolchain |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
matrix: | ||
- name: markdown | ||
aspell: | ||
lang: en | ||
d: en_US | ||
camel-case: true | ||
mode: markdown | ||
sources: | ||
- "**/*.md|!venv/**" | ||
dictionary: | ||
wordlists: | ||
- .spellcheck-en-custom.txt | ||
pipeline: | ||
- pyspelling.filters.context: | ||
context_visible_first: true | ||
escapes: '\\[\\`~]' | ||
delimiters: | ||
# Ignore multiline content between fences (fences can have 3 or more back ticks) | ||
# ```language | ||
# content | ||
# ``` | ||
- open: '^(?P<open> *`{3,}).*$' | ||
close: '^(?P=open)$' | ||
# Ignore text between inline back ticks | ||
- open: '(?P<open>`+)' | ||
close: '(?P=open)' |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
extends: default | ||
|
||
rules: | ||
document-start: disable | ||
line-length: | ||
max: 120 |