Skip to content

Commit

Permalink
Add typescript support (#266)
Browse files Browse the repository at this point in the history
Also compress all images.
  • Loading branch information
NigelBreslaw authored Feb 2, 2024
1 parent af33c56 commit 84ee0f8
Show file tree
Hide file tree
Showing 22 changed files with 611 additions and 188 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ jobs:
run: cd native_gg && pnpm install --frozen-lockfile
# - name: lint
# run: cd native_gg && pnpm lint
# - name: format
# run: cd native_gg && pnpm format:check
- name: format
run: cd native_gg && pnpm format:check

36 changes: 18 additions & 18 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"$schema": "https://biomejs.dev/schemas/1.4.1/schema.json",
"organizeImports": {
"enabled": true
},
"formatter": {
"indentWidth": 2,
"indentStyle": "space",
"lineWidth": 120,
"ignore": ["ios/**"]
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"noNonNullAssertion": "off"
}
}
"$schema": "https://biomejs.dev/schemas/1.4.1/schema.json",
"organizeImports": {
"enabled": true
},
"formatter": {
"indentWidth": 2,
"indentStyle": "space",
"lineWidth": 120,
"ignore": ["ios/**", "android/**", "node_modules/**"]
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"noNonNullAssertion": "off"
}
}
}
}
4 changes: 2 additions & 2 deletions gg-mono/apps/dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
"preview": "astro preview",
"start": "astro dev",
"coverage": "vitest run --coverage",
"format:check": "biome format ./src --max-diagnostics=500",
"format:write": "biome format --write ./src --max-diagnostics=500",
"format:check": "biome format ./src",
"format:write": "biome format --write ./src",
"lint": "biome lint ./src --max-diagnostics=500",
"lint:fix": "biome check --apply ./src --max-diagnostics=500"
},
Expand Down
10 changes: 1 addition & 9 deletions gg-mono/apps/dashboard/src/assets/astro-logo-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 1 addition & 9 deletions gg-mono/apps/dashboard/src/assets/astro-logo-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 84ee0f8

Please sign in to comment.