From 58c91bee59d5b892b8191a789af75346d0a357a8 Mon Sep 17 00:00:00 2001 From: vincent Date: Wed, 21 Apr 2021 10:48:26 +0200 Subject: [PATCH] change linting rules --- .drone.yml | 5 +++++ .yamllint | 2 ++ 2 files changed, 7 insertions(+) diff --git a/.drone.yml b/.drone.yml index 154ee8f..e9e7d84 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,7 +8,12 @@ steps: image: pipelinecomponents/yamllint commands: - yamllint . + - name: markdown linting image: 06kellyjac/markdownlint-cli commands: - markdownlint . -i themes + when: + status: + - success + - failure diff --git a/.yamllint b/.yamllint index 69eeed3..d3db662 100644 --- a/.yamllint +++ b/.yamllint @@ -1,3 +1,4 @@ +--- extends: default ignore: themes/ @@ -7,3 +8,4 @@ rules: line-length: max: 80 level: warning + allow-non-breakable-words: true