-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate NX, storybook to latest version (#147)
* chore: update npm dependencies * migrate directories * chore: Remove unnecessary configuration files * update * move files * chore: Update eslint ignorePatterns to include "node_modules" * chore: Remove unnecessary configuration files * update * chore: Refactor test files and update dependencies * Add CODE_OF_CONDUCT.md, LICENSE, SUPPORT.md, and SECURITY.md files * Add Jest runner extension and Jest target to nx.json and tsconfig.json * Update package.json scripts to use yarn * Add test step to GitHub Actions workflow --------- Co-authored-by: Yucong Jin <[email protected]>
- Loading branch information
Showing
242 changed files
with
157,549 additions
and
18,108 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,13 +1,14 @@ | ||
# Editor configuration, see http://editorconfig.org | ||
# editorconfig.org | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
max_line_length = 120 | ||
quote_type = double | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
max_line_length = off | ||
trim_trailing_whitespace = false |
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
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,15 +1,5 @@ | ||
# Add files here to ignore them from prettier formatting | ||
|
||
**/*.* | ||
!**/*.ts | ||
!**/*.tsx | ||
!**/*.js | ||
!**/*.jsx | ||
!**/*.json | ||
!**/*.mjs | ||
!**/*.mts | ||
!.eslintignore | ||
!.eslintrc | ||
|
||
/dist | ||
/coverage | ||
/.nx/cache | ||
.yarn |
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,7 +1,5 @@ | ||
{ | ||
"endOfLine": "lf", | ||
"printWidth": 80, | ||
"semi": true, | ||
"singleQuote": false, | ||
"useTabs": false | ||
"endOfLine": "auto", | ||
"trailingComma": "all", | ||
"arrowParens": "avoid" | ||
} |
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,8 +1,3 @@ | ||
{ | ||
"recommendations": [ | ||
"dbaeumer.vscode-eslint", | ||
"esbenp.prettier-vscode", | ||
"mrmlnc.vscode-scss", | ||
"streetsidesoftware.code-spell-checker" | ||
] | ||
"recommendations": ["nrwl.angular-console", "esbenp.prettier-vscode", "firsttris.vscode-jest-runner"] | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.