Skip to content

Commit

Permalink
Merge pull request #9 from 0xChqrles/feat/app
Browse files Browse the repository at this point in the history
Frontend init
  • Loading branch information
0xChqrles authored Nov 7, 2024
2 parents 846909b + d603202 commit 22cd868
Show file tree
Hide file tree
Showing 290 changed files with 34,733 additions and 19,255 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Editor configuration, see http://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
max_line_length = off
trim_trailing_whitespace = false
2 changes: 2 additions & 0 deletions .env.defaults
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
TEST=123
SN_NETWORK_NAME=SN_SEPOLIA
8 changes: 8 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
**/dist/**
**/build/**
**/node_modules/**
**/types/**
**/*.test.{js,jsx,ts,tsx}
**/*.spec.{js,jsx,ts,tsx}
**/config-overrides.js
**/.eslintrc.js
11 changes: 7 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,12 @@ dist
# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
# turbo
.turbo

# .yarn files
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/versions
.yarn/install-state.gz
.pnp.*

dist/out-tsc/*
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

yarn g:run-fast-checks
3 changes: 3 additions & 0 deletions .lintstagedrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"**/*+(.ts?|.tsx)": ["turbo staged:lint:fix staged:format --filter=// --"]
}
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# used in tandem with package.json engines section to only use yarn
engine-strict=true
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v18.16.0
37 changes: 37 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
*.tsbuildinfo
__generated__
__mocks__
.tamagui
.turbo
.turbo
.yarn
@types
*.html
*.inc
*.json
*.md
*.yml
build
craco.config.cjs
dist
jest-setup.js
jest.config.js
jest.config.js
metro.config.js
node_modules
types

# app/package specific

# mobile

apps/mobile/ios
apps/mobile/android

# extension

apps/extension/dev

# eslint partials

packages/eslint-config/restrictedImports.js
9 changes: 9 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"bracketSameLine": false,
"singleQuote": true,
"printWidth": 120,
"semi": false,
"plugins": [
"prettier-plugin-organize-imports"
]
}
52 changes: 52 additions & 0 deletions .yarn/plugins/@yarnpkg/plugin-constraints.cjs

Large diffs are not rendered by default.

550 changes: 550 additions & 0 deletions .yarn/plugins/@yarnpkg/plugin-version.cjs

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs

Large diffs are not rendered by default.

783 changes: 783 additions & 0 deletions .yarn/releases/yarn-3.2.3.cjs

Large diffs are not rendered by default.

39 changes: 39 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
enableTelemetry: false

changesetBaseRefs:
- main
- origin/main
- upstream/main

changesetIgnorePatterns:
- '**/*.test.{js,jsx,ts,tsx}'

defaultSemverRangePrefix: ''

enableGlobalCache: false

nmMode: hardlinks-local

logFilters:
- code: YN0002
level: discard
- code: YN0060
level: discard
- code: YN0006
level: discard
- code: YN0076
level: discard
- code: YN0013
level: discard

nodeLinker: node-modules

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
spec: '@yarnpkg/plugin-workspace-tools'
- path: .yarn/plugins/@yarnpkg/plugin-version.cjs
spec: '@yarnpkg/plugin-version'
- path: .yarn/plugins/@yarnpkg/plugin-constraints.cjs
spec: '@yarnpkg/plugin-constraints'

yarnPath: .yarn/releases/yarn-3.2.3.cjs
20 changes: 0 additions & 20 deletions app/.gitignore

This file was deleted.

36 changes: 0 additions & 36 deletions app/app.json

This file was deleted.

37 changes: 0 additions & 37 deletions app/app/(tabs)/_layout.tsx

This file was deleted.

102 changes: 0 additions & 102 deletions app/app/(tabs)/explore.tsx

This file was deleted.

Loading

0 comments on commit 22cd868

Please sign in to comment.