add support file
This commit is contained in:
parent
b2f4dace21
commit
2fc7061e36
19
.drone.yml
Normal file
19
.drone.yml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: lint
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: ansible linting
|
||||||
|
image: cytopia/ansible-lint
|
||||||
|
|
||||||
|
commands:
|
||||||
|
- ansible-lint tasks/main.yml
|
||||||
|
- name: markdown linting
|
||||||
|
image: 06kellyjac/markdownlint-cli
|
||||||
|
commands:
|
||||||
|
- markdownlint .
|
||||||
|
when:
|
||||||
|
status:
|
||||||
|
- success
|
||||||
|
- failure
|
9
.markdownlint.yaml
Normal file
9
.markdownlint.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
# Default state for all rules
|
||||||
|
default: true
|
||||||
|
MD009:
|
||||||
|
strict: false
|
||||||
|
|
||||||
|
MD013: false
|
||||||
|
MD033: false
|
||||||
|
MD024: false
|
11
.yamllint
Normal file
11
.yamllint
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
extends: default
|
||||||
|
|
||||||
|
rules:
|
||||||
|
# 80 chars should be enough, but don't fail if a line is longer
|
||||||
|
line-length:
|
||||||
|
max: 80
|
||||||
|
level: warning
|
||||||
|
allow-non-breakable-words: true
|
||||||
|
comments:
|
||||||
|
min-spaces-from-content: 1
|
6
tests/test.yml
Normal file
6
tests/test.yml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- hosts:
|
||||||
|
- all
|
||||||
|
become: true
|
||||||
|
roles:
|
||||||
|
- ansible-role-certbot
|
Loading…
Reference in New Issue
Block a user