chore: setup project configs

This commit is contained in:
Nicola Zambello 2023-02-14 10:07:37 +01:00
parent 06f5332aea
commit 30c1a2ad4b
Signed by: nzambello
GPG key ID: 56E4A92C2C1E50BA
4 changed files with 15 additions and 0 deletions

12
.editorConfig Normal file
View file

@ -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

2
.gitignore vendored
View file

@ -1,4 +1,6 @@
node_modules
*.swp
yarn-error.log
/.cache
/build

0
CHANGELOG.md Normal file
View file

1
commitlint.config.js Normal file
View file

@ -0,0 +1 @@
module.exports = { extends: ['@commitlint/config-conventional'] };