-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from cisagov/lineage/skeleton
⚠️ CONFLICT! Lineage pull request for: skeleton
- Loading branch information
Showing
18 changed files
with
517 additions
and
118 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
--- | ||
version: "1" | ||
|
||
lineage: | ||
skeleton: | ||
remote-url: https://github.com/cisagov/skeleton-docker.git | ||
version: '1' |
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
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
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 |
---|---|---|
@@ -1,5 +1,12 @@ | ||
# This file specifies intentionally untracked files that Git should ignore. | ||
# Files already tracked by Git are not affected. | ||
# See: https://git-scm.com/docs/gitignore | ||
|
||
## Docker ## | ||
Dockerfile-x | ||
|
||
## Python ## | ||
__pycache__ | ||
.mypy_cache | ||
.pytest_cache | ||
.python-version | ||
Dockerfile-x |
This file was deleted.
Oops, something went wrong.
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,40 @@ | ||
--- | ||
|
||
# Default state for all rules | ||
default: true | ||
|
||
# MD003/heading-style/header-style - Heading style | ||
MD003: | ||
# Enforce the ATX-closed style of header | ||
style: "atx_closed" | ||
|
||
# MD004/ul-style - Unordered list style | ||
MD004: | ||
# Enforce dashes for unordered lists | ||
style: "dash" | ||
|
||
# MD013/line-length - Line length | ||
MD013: | ||
# Do not enforce for code blocks | ||
code_blocks: false | ||
# Do not enforce for tables | ||
tables: false | ||
|
||
# MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the | ||
# same content | ||
MD024: | ||
# Allow headers with the same content as long as they are not in the same | ||
# parent heading | ||
allow_different_nesting: true | ||
|
||
# MD029/ol-prefix - Ordered list item prefix | ||
MD029: | ||
# Enforce the `1.` style for ordered lists | ||
style: "one" | ||
|
||
# MD033/no-inline-html - Inline HTML | ||
MD033: | ||
# The h1 and img elements are allowed to permit header images | ||
allowed_elements: | ||
- h1 | ||
- img |
Oops, something went wrong.