-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #326 from letehaha/feat/ui-improvements
feat: UI improvements
- Loading branch information
Showing
91 changed files
with
6,707 additions
and
6,421 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,3 +1,4 @@ | ||
node_modules | ||
dist | ||
vue.config.js | ||
knip.ts |
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
Submodule backend
updated
13 files
+2 −0 | .env.template | |
+0 −23 | .github/workflows/branch-protection.yml | |
+2 −3 | .github/workflows/check-source-code.yml | |
+1 −0 | .github/workflows/image-to-docker-hub.yml | |
+11 −0 | package-lock.json | |
+1 −0 | package.json | |
+3 −0 | src/app.ts | |
+31 −0 | src/common/lib/cls/session-id.ts | |
+2 −0 | src/common/types.ts | |
+2 −0 | src/js/utils/logger.ts | |
+77 −0 | src/middlewares/session-id.ts | |
+2 −2 | src/services/auth.service.ts | |
+2 −0 | src/typings/express.d.ts |
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,55 @@ | ||
// eslint-disable-next-line import/no-self-import | ||
import type { KnipConfig } from "knip"; | ||
|
||
const config: KnipConfig = { | ||
ignore: [ | ||
".eslintrc.js", | ||
"index.d.ts", | ||
"vite.config.js", | ||
"backend/**/**", | ||
"wallaby.js", | ||
// keep it for now, delete when Playwright added | ||
"tests/**/**", | ||
"cypress/**/**", | ||
// keep them all for now | ||
"src/components/lib/**/**", | ||
// for some reason it cannot resolve it | ||
"tsconfig.json", | ||
], | ||
ignoreDependencies: [ | ||
// Needed for Storybook | ||
"react-dom", | ||
// Storybook | ||
"@storybook/cli", | ||
"@storybook/theming", | ||
"@storybook/vue3", | ||
"@storybook/addon-docs", | ||
"@storybook/addon-actions", | ||
// needed on CI | ||
"shared-types", | ||
], | ||
// ignoreBinaries: ["eslint"], | ||
rules: { | ||
// Disables "Dubplicate exports" warning. In some components we want to keep | ||
// exporting the component both as the variable and as a "default export" | ||
duplicates: "off", | ||
// enumMembers: "off", | ||
}, | ||
|
||
/** | ||
* PLUGINS | ||
* | ||
* We define them manually, because Knip cannot find them automatically. | ||
* We need them defined, so Knip won't report of unused dependencies and will | ||
* respect plugins configs. | ||
*/ | ||
eslint: { | ||
config: [".eslintrc", ".eslintrc.cjs"], | ||
entry: [".eslintrc.cjs"], | ||
}, | ||
/** | ||
* PLUGINS END | ||
*/ | ||
}; | ||
|
||
export default config; |
Oops, something went wrong.