From 0b94313b129592267c7498af36cf5c40d1f7860b Mon Sep 17 00:00:00 2001 From: William Desportes Date: Fri, 6 Aug 2021 00:01:37 +0200 Subject: [PATCH] Add some configurations --- .editorconfig | 8 ++++++++ .gitattributes | 5 +++++ .markdownlint.json | 10 ++++++++++ 3 files changed, 23 insertions(+) create mode 100644 .editorconfig create mode 100644 .markdownlint.json diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..dc65868 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,8 @@ +root = true + +[*] +indent_style = space +indent_size = 4 +charset = utf-8 +trim_trailing_whitespace = false +insert_final_newline = true diff --git a/.gitattributes b/.gitattributes index e69de29..f410cf4 100644 --- a/.gitattributes +++ b/.gitattributes @@ -0,0 +1,5 @@ +/.github export-ignore +/.gitignore export-ignore +/CONTRIBUTING.md export-ignore +/.markdownlint.json export-ignore +/.editorconfig export-ignore diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 0000000..c9ed6c7 --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,10 @@ +{ + "default": true, + "MD004": false, + "MD007": false, + "MD013": { + "line_length": 1000 + }, + "MD024": false, + "MD032": false +}