diff --git a/.eslintignore b/.eslintignore index 8055da54..93f40ee1 100644 --- a/.eslintignore +++ b/.eslintignore @@ -4,3 +4,5 @@ **/proto **/coverage **/storybook-static +**/examples +**/packages/status-react diff --git a/.gitignore b/.gitignore index a897bec0..bb60dc91 100644 --- a/.gitignore +++ b/.gitignore @@ -102,3 +102,5 @@ web-build/ # Tauri **/src-tauri/target/ +# Local +**/.data diff --git a/packages/components/src/community/sidebar-community/sidebar-community.stories.tsx b/packages/components/src/community/sidebar-community/sidebar-community.stories.tsx index 102b335d..f61251a8 100644 --- a/packages/components/src/community/sidebar-community/sidebar-community.stories.tsx +++ b/packages/components/src/community/sidebar-community/sidebar-community.stories.tsx @@ -40,7 +40,7 @@ export const Default: Story = { export const Loading: Story = { args: { - loading:true + loading: true, }, } diff --git a/tsconfig.base.json b/tsconfig.base.json index 2ffb9dc0..87a1b6f6 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -26,6 +26,7 @@ // "noUncheckedIndexedAccess": true, // "noPropertyAccessFromIndexSignature": true /* Enforces using indexed accessors for keys declared using an indexed type */, "skipLibCheck": true, - "pretty": true + "pretty": true, + "resolveJsonModule": true } }