-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: refactor flyteconsole app Signed-off-by: Carina Ursu <[email protected]> * chore: fix tests Signed-off-by: Carina Ursu <[email protected]> * chore: snyk fix Signed-off-by: Carina Ursu <[email protected]> * chore: exclude-1.4 Signed-off-by: Carina Ursu <[email protected]> * chore: bump console Signed-off-by: Carina Ursu <[email protected]> Signed-off-by: Carina Ursu <[email protected]>
- Loading branch information
1 parent
516bbff
commit 924bb7e
Showing
846 changed files
with
39,952 additions
and
28,578 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,8 +1,12 @@ | ||
.git | ||
.env | ||
node_modules | ||
Dockerfile | ||
|
||
# * | ||
# !package.json | ||
# !yarn.lock | ||
# !packages/ | ||
# !node_modules/ | ||
# !jes | ||
.storybook/ | ||
stories-intro/ | ||
Dockerfile* | ||
.dockerignore | ||
npm-debug.log | ||
.storybook | ||
.vscode | ||
README* |
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 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[Makefile] | ||
indent_style = tab |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npx --no -- commitlint --edit ${1} |
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,6 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
[ -n "$CI" ] && exit 0 | ||
|
||
echo "Linting staged files..." | ||
yarn lint-staged |
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,73 @@ | ||
.env | ||
*.swp | ||
LICENSE | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Packages | ||
bin/ | ||
build/ | ||
dist/ | ||
downloads/ | ||
env/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
|
||
# Translations | ||
*.mo | ||
|
||
# build packages or files that shouldn't be in repo | ||
node_modules | ||
bower_components | ||
.sass-cache | ||
.tmp | ||
app/public/dist | ||
app/public/styles/*.css | ||
|
||
# Mr Developer (mac, editor, IDEs, etc) | ||
.mr.developer.cfg | ||
.project | ||
.pydevproject | ||
.vagrant | ||
.ropeproject | ||
.tmp | ||
.sass-cache | ||
.DS_Store | ||
.zedstate | ||
.idea | ||
.cache/ | ||
venv/ | ||
*.tsbuildinfo | ||
*.log | ||
**.orig | ||
|
||
# Frontend | ||
.awcache/ | ||
.dist/ | ||
npm-debug.log | ||
jest | ||
jest_0 | ||
.coverage/ | ||
|
||
# yarn related | ||
node_modules | ||
.pnp.* | ||
*.yalc | ||
yalc.lock | ||
**/.yarn/* | ||
yarn-error.log | ||
!**/.yarn/plugins | ||
!**/.yarn/releases | ||
!**/.yarn/sdks | ||
!**/.yarn/versions | ||
# patches contain the patchfiles which have been generated with the `yarn patch-commit` command. | ||
# We always want them in repository, since they are necessary to install dependencies. | ||
!.yarn/patches | ||
|
||
# Certs | ||
.srl | ||
certificate/ |
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,21 @@ | ||
singleQuote: true | ||
tabWidth: 4 | ||
printWidth: 100 | ||
tabWidth: 2 | ||
printWidth: 80 | ||
trailingComma: "all" | ||
useTabs: false | ||
semi: true | ||
|
||
arrowParens: "avoid" | ||
bracketSpacing: true | ||
htmlWhitespaceSensitivity: "css" | ||
|
||
overrides: | ||
- files: ["*.js", "*.jsx", "*.ts", "*.tsx"] | ||
options: | ||
tabWidth: 2 | ||
- files: ["*.yml", "*.yaml"] | ||
options: | ||
singleQuote: false | ||
tabWidth: 2 | ||
- files: ["*.html"] | ||
options: | ||
tabWidth: 4 | ||
- files: ["dockerfile"] | ||
options: | ||
useTabs: 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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
{ | ||
"plugins": [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/release-notes-generator", | ||
[ | ||
"@semantic-release/changelog", | ||
{ | ||
"changelogTitle": "# Changelog\n\nAll notable changes to this project will be documented in this file. See\n[Conventional Commits](https://conventionalcommits.org) for commit guidelines." | ||
} | ||
], | ||
["@semantic-release/npm", { "npmPublish": false }], | ||
"@semantic-release/github" | ||
] | ||
"plugins": [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/release-notes-generator", | ||
[ | ||
"@semantic-release/changelog", | ||
{ | ||
"changelogTitle": "# Changelog\n\nAll notable changes to this project will be documented in this file. See\n[Conventional Commits](https://conventionalcommits.org) for commit guidelines." | ||
} | ||
], | ||
["@semantic-release/npm", { "npmPublish": false }], | ||
"@semantic-release/github" | ||
] | ||
} |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
nodejs 16.14.2 | ||
yarn 1.22.17 | ||
nodejs 18.1.0 | ||
yarn 3.2.1 |
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,9 +1,13 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. | ||
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp | ||
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. | ||
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp | ||
|
||
// List of extensions which should be recommended for users of this workspace. | ||
"recommendations": ["eamodio.gitlens", "dbaeumer.vscode-eslint", "esbenp.prettier-vscode"], | ||
// List of extensions recommended by VS Code that should not be recommended for users of this workspace. | ||
"unwantedRecommendations": [] | ||
// List of extensions which should be recommended for users of this workspace. | ||
"recommendations": [ | ||
"eamodio.gitlens", | ||
"dbaeumer.vscode-eslint", | ||
"esbenp.prettier-vscode" | ||
], | ||
// List of extensions recommended by VS Code that should not be recommended for users of this workspace. | ||
"unwantedRecommendations": [] | ||
} |
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,16 +1,16 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "launch generator", | ||
"type": "node", | ||
"request": "launch", | ||
"skipFiles": ["<node_internals>/**"], | ||
"program": "${workspaceFolder}/script/generator/src/index.js", | ||
"console": "integratedTerminal" | ||
} | ||
] | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "launch generator", | ||
"type": "node", | ||
"request": "launch", | ||
"skipFiles": ["<node_internals>/**"], | ||
"program": "${workspaceFolder}/script/generator/src/index.js", | ||
"console": "integratedTerminal" | ||
} | ||
] | ||
} |
Oops, something went wrong.