-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: support ng7 * fix(module:toast): fix 0 is missing - close #113 * fix(module:bar): fix trigger select when router changed - close #120 * docs: tips - #122 * fix(module:textarea): support more than 2 quantity - close #125 * chore: fix, close #115 * fix(module:rating): fix a11y, close #129 * chore: remove explicit preserveWhitespaces setting * fix(module:*): fix missing disabled in reactive forms, close #83 * docs: close #111
- Loading branch information
Showing
84 changed files
with
754 additions
and
952 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 |
---|---|---|
@@ -1,11 +1,52 @@ | ||
# http://editorconfig.org | ||
[*] | ||
charset=utf-8 | ||
end_of_line=lf | ||
trim_trailing_whitespace=true | ||
insert_final_newline=false | ||
indent_style=space | ||
indent_size=4 | ||
|
||
root = true | ||
[{*.ng,*.sht,*.html,*.shtm,*.shtml,*.htm}] | ||
indent_style=space | ||
indent_size=2 | ||
|
||
[{.babelrc,.stylelintrc,.eslintrc,jest.config,*.json,*.jsb3,*.jsb2,*.bowerrc}] | ||
indent_style=space | ||
indent_size=2 | ||
|
||
[*.css] | ||
indent_style=space | ||
indent_size=2 | ||
|
||
[{*.applejs,*.js}] | ||
indent_style=space | ||
indent_size=2 | ||
|
||
[{*.ats,*.ts}] | ||
indent_style=space | ||
indent_size=2 | ||
|
||
[*.tsx] | ||
indent_style=space | ||
indent_size=2 | ||
|
||
[*.js] | ||
indent_style=space | ||
indent_size=2 | ||
|
||
[*.js.map] | ||
indent_style=space | ||
indent_size=2 | ||
|
||
[*.less] | ||
indent_style=space | ||
indent_size=2 | ||
|
||
[{.analysis_options,*.yml,*.yaml}] | ||
indent_style=space | ||
indent_size=2 | ||
|
||
[tslint.json] | ||
indent_style=space | ||
indent_size=2 | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = 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
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,12 +1,13 @@ | ||
// Place your settings in this file to overwrite default and user settings. | ||
{ | ||
"javascript.implicitProjectConfig.checkJs": true, | ||
"files.watcherExclude": { | ||
"**/.git/objects/**": true, | ||
"**/.git/subtree-cache/**": true, | ||
"**/node_modules/*/**": true, | ||
"**/dist/*/**": true, | ||
"**/coverage/*/**": true, | ||
"**/tools/*/**": true | ||
} | ||
} | ||
"javascript.implicitProjectConfig.checkJs": true, | ||
"files.watcherExclude": { | ||
"**/.git/objects/**": true, | ||
"**/.git/subtree-cache/**": true, | ||
"**/node_modules/*/**": true, | ||
"**/dist/*/**": true, | ||
"**/coverage/*/**": true, | ||
"**/tools/*/**": true | ||
}, | ||
"tslint.autoFixOnSave": 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
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
Oops, something went wrong.