This commit includes the addition of a new markdown lint configuration to disable MD041 rule. It also introduces an Ansible best practices file, README guidelines for comprehensive project files, an AI PR review workflow, and new security checks using Gitleaks and markdown-lint.
24 lines
506 B
Plaintext
24 lines
506 B
Plaintext
---
|
|
# This is my first, very own configuration file for yamllint!
|
|
# It extends the default conf by adjusting some options.
|
|
|
|
extends: default
|
|
|
|
rules:
|
|
comments-indentation: disable # don't bother me with this rule
|
|
truthy:
|
|
allowed-values: ['true', 'false', 'yes', 'no', 'on']
|
|
comments:
|
|
min-spaces-from-content: 1
|
|
|
|
braces:
|
|
max-spaces-inside: 1
|
|
|
|
octal-values:
|
|
forbid-implicit-octal: true
|
|
forbid-explicit-octal: true
|
|
|
|
line-length:
|
|
max: 120
|
|
allow-non-breakable-words: true
|