Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add sidebar to v2 UI #15925

Merged
merged 19 commits into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .codespellrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ skip = .git,*.pdf,*.svg,versioneer.py,package-lock.json,_vendor,*.css,.codespell
# from https://github.com/PrefectHQ/prefect/pull/10813#issuecomment-1732676130
ignore-regex = .*lazy=\"selectin\"|.*e import Bloc$|America/Nome

ignore-words-list = selectin,aci,wqs,aks,ines,dependant,fsspec,automations,nmme
ignore-words-list = selectin,aci,wqs,aks,ines,dependant,fsspec,automations,nmme,afterall

check-hidden = true
4 changes: 4 additions & 0 deletions .github/workflows/ui-v2-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,7 @@ jobs:
- name: Build UI
working-directory: ./ui-v2
run: npm run build

- name: Run tests
working-directory: ./ui-v2
run: npm run test
3 changes: 3 additions & 0 deletions ui-v2/.husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
cd ui-v2
npm run lint
npm run format
2 changes: 1 addition & 1 deletion ui-v2/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import globals from "globals";
import tseslint from "typescript-eslint";

export default tseslint.config(
{ ignores: ["dist", "src/api/prefect.tsx"] },
{ ignores: ["dist", "src/api/prefect.ts"] },
{
extends: [
js.configs.recommended,
Expand Down
Loading
Loading