Merge pull request #514 from cisagov/lineage/skeleton

⚠️ CONFLICT! Lineage pull request for: skeleton
pull/442/head^2
Nick 2 years ago committed by GitHub
commit 5097d37907
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      .github/dependabot.yml
  2. 12
      .mdl_config.yaml
  3. 2
      .pre-commit-config.yaml
  4. 6
      .yamllint

@ -1,5 +1,10 @@
---
# Any ignore directives should be uncommented in downstream projects to disable
# Dependabot updates for the given dependency. Downstream projects will get
# these updates when the pull request(s) in the appropriate skeleton are merged
# and Lineage processes these changes.
version: 2
updates:
- package-ecosystem: "github-actions"

@ -44,7 +44,17 @@ MD035:
# Enforce dashes for horizontal rules
style: "---"
# MD046/code-block-style Code block style
# MD046/code-block-style - Code block style
MD046:
# Enforce the fenced style for code blocks
style: "fenced"
# MD049/emphasis-style - Emphasis style should be consistent
MD049:
# Enforce asterisks as the style to use for emphasis
style: "asterisk"
# MD050/strong-style - Strong style should be consistent
MD050:
# Enforce asterisks as the style to use for strong
style: "asterisk"

@ -31,7 +31,7 @@ repos:
# Text file hooks
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.30.0
rev: v0.31.1
hooks:
- id: markdownlint
args:

@ -2,6 +2,12 @@
extends: default
rules:
# yamllint does not like it when you comment out different parts of
# dictionaries in a list. You can see
# https://github.com/adrienverge/yamllint/issues/384 for some examples of
# this behavior.
comments-indentation: disable
# yamllint doesn't like when we use yes and no for true and false,
# but that's pretty standard in Ansible.
truthy: disable

Loading…
Cancel
Save