From e34a0eb58c25536097b07c0c20e3dbf1f3f8810a Mon Sep 17 00:00:00 2001 From: Daniil Oberlev Date: Thu, 30 Oct 2025 02:05:15 +0300 Subject: [PATCH] docs(styles): add code quality conventional practice --- .czrc | 3 +++ .editorconfig | 9 +++++++++ .gitattributes | 6 ++++++ .markdownlint.json | 3 +++ 4 files changed, 21 insertions(+) create mode 100644 .czrc create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 .markdownlint.json diff --git a/.czrc b/.czrc new file mode 100644 index 0000000..ddff4b5 --- /dev/null +++ b/.czrc @@ -0,0 +1,3 @@ +{ + "path": "cz-conventional-changelog" +} diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..df64b53 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space +indent_size = 2 \ No newline at end of file diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..3095391 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,6 @@ +*.md linguist-detectable=true + +*.md text eol=lf + +*.png binary +*.jpg binary diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 0000000..67d2ae5 --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,3 @@ +{ + "MD013": false +}