-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(config): update ide and ci configuration file
- Loading branch information
Showing
7 changed files
with
119 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
max_line_length = 80 | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
max_line_length = 0 | ||
trim_trailing_whitespace = false | ||
|
||
[COMMIT_EDITMSG] | ||
max_line_length = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
.rts2_cache_cjs | ||
.rts2_cache_esm | ||
.rts2_cache_umd | ||
node_modules | ||
src | ||
test | ||
.editorconfig | ||
.gitignore | ||
.huskyrc.json | ||
.npmignore | ||
.nvmrc | ||
.prettierignore | ||
.prettierrc | ||
.travis.yml | ||
tsconfig.json | ||
tslint.json | ||
yarn.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
10.16.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
language: node_js | ||
|
||
node_js: | ||
- 10 | ||
|
||
before_script: | ||
- echo "Start CI" | ||
|
||
install: | ||
- yarn install --check-files | ||
|
||
script: | ||
- yarn run build | ||
- yarn run test:coverage:report -- --username $CODACY_USERNAME --projectName $CODACY_PROJECT_NAME | ||
|
||
before_deploy: | ||
- if [ ! -d dist ]; then yarn run build ; fi | ||
|
||
deploy: | ||
provider: npm | ||
email: $NPM_AUTHOR_EMAIL | ||
api_key: $NPM_TOKEN | ||
skip_cleanup: true | ||
on: | ||
tags: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
types: [ | ||
{ | ||
type: "chore", | ||
section: "π§ Chore" | ||
}, | ||
{ | ||
type: "docs", | ||
section: "π Documentations" | ||
}, | ||
{ | ||
type: "perf", | ||
section: "π‘ Performance Improvement" | ||
}, | ||
{ | ||
type: "refactor", | ||
section: "π§ Refactor" | ||
}, | ||
{ | ||
type: "style", | ||
section: "π¨ Style" | ||
}, | ||
{ | ||
type: "build", | ||
section: "π¦ Build System" | ||
}, | ||
{ | ||
type: "ci", | ||
section: "π Continuous Integration" | ||
}, | ||
{ | ||
type: "feat", | ||
section: "π Features" | ||
}, | ||
{ | ||
type: "fix", | ||
section: "π Bug Fixes" | ||
}, | ||
{ | ||
type: "test", | ||
section: "β οΈ Tests" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"breadcrumbs.enabled": true, | ||
"editor.fontFamily": "Fira Code, 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'", | ||
"editor.fontLigatures": true, | ||
"editor.formatOnSave": true, | ||
"editor.renderWhitespace": "all", | ||
"editor.rulers": [80, 120], | ||
"editor.tabSize": 2, | ||
"files.trimTrailingWhitespace": true, | ||
"window.zoomLevel": 0, | ||
"workbench.activityBar.visible": true, | ||
"workbench.sideBar.location": "right" | ||
} |