chore: setup project configs
This commit is contained in:
parent
06f5332aea
commit
30c1a2ad4b
12
.editorConfig
Normal file
12
.editorConfig
Normal 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
2
.gitignore
vendored
|
|
@ -1,4 +1,6 @@
|
||||||
node_modules
|
node_modules
|
||||||
|
*.swp
|
||||||
|
yarn-error.log
|
||||||
|
|
||||||
/.cache
|
/.cache
|
||||||
/build
|
/build
|
||||||
|
|
|
||||||
0
CHANGELOG.md
Normal file
0
CHANGELOG.md
Normal file
1
commitlint.config.js
Normal file
1
commitlint.config.js
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
module.exports = { extends: ['@commitlint/config-conventional'] };
|
||||||
Loading…
Reference in a new issue