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 +}