aboutsummaryrefslogtreecommitdiff
path: root/.markdownlint.json
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2020-04-16 18:08:53 +0200
committerGravatar GitHub <noreply@github.com> 2020-04-16 18:08:53 +0200
commit475feffdbec733b3d3221276217692bed5f8f090 (patch)
tree24395201a6f81fab09d06c6be9703f43090d9024 /.markdownlint.json
parent946d9f5535ddc62fb667edd27e57bde419586e23 (diff)
Markdownlint (#2880)
* markdownlint I have started to use [markdownlint](https://github.com/DavidAnson/markdownlint/) to find typos in Markdown. Let's discuss which rules to enforce / disable / customize * markdownlint cli/readme
Diffstat (limited to '.markdownlint.json')
-rw-r--r--.markdownlint.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/.markdownlint.json b/.markdownlint.json
new file mode 100644
index 000000000..ad37f178e
--- /dev/null
+++ b/.markdownlint.json
@@ -0,0 +1,16 @@
+{
+ "default": true,
+ "first-line-heading": false,
+ "line-length": false,
+ "no-hard-tabs": false,
+ "no-inline-html": {
+ "allowed_elements": [ "kbd" ]
+ },
+ "no-multiple-blanks": {
+ "maximum": 2
+ },
+ "ul-indent": false,
+ "ul-style": {
+ "style": "consistent"
+ }
+}