From 30c1a2ad4bf826855730e8e60872fcb165065be2 Mon Sep 17 00:00:00 2001 From: nzambello Date: Tue, 14 Feb 2023 10:07:37 +0100 Subject: [PATCH] chore: setup project configs --- .editorConfig | 12 ++++++++++++ .gitignore | 2 ++ CHANGELOG.md | 0 commitlint.config.js | 1 + 4 files changed, 15 insertions(+) create mode 100644 .editorConfig create mode 100644 CHANGELOG.md create mode 100644 commitlint.config.js diff --git a/.editorConfig b/.editorConfig new file mode 100644 index 0000000..afbd9e3 --- /dev/null +++ b/.editorConfig @@ -0,0 +1,12 @@ +[*] +indent_style = space +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +charset = utf-8 + +[{*.css,*.scss,*.less,*.overrides,*.variables}] +indent_size = 4 + +[{*.js,*.jsx,*.json,*.ts,*.tsx}] +indent_size = 2 \ No newline at end of file diff --git a/.gitignore b/.gitignore index 3f7bf98..733cd17 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ node_modules +*.swp +yarn-error.log /.cache /build diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e69de29 diff --git a/commitlint.config.js b/commitlint.config.js new file mode 100644 index 0000000..422b194 --- /dev/null +++ b/commitlint.config.js @@ -0,0 +1 @@ +module.exports = { extends: ['@commitlint/config-conventional'] };