Skip to content

Commit

Permalink
remove turbo
Browse files Browse the repository at this point in the history
  • Loading branch information
qudo-code committed Jun 18, 2023
1 parent 3a8628c commit ec574ba
Show file tree
Hide file tree
Showing 163 changed files with 8,402 additions and 20,551 deletions.
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ tsconfig.cjs.json
tsconfig.esm.json
tsconfig.json
package-lock.json
packages
packages
_packages
86 changes: 84 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,86 @@
{
"extends": ["custom"],
"root": true
"env": {
"browser": true,
"es6": true,
"jest": true,
"node": true
},

"extends": ["plugin:prettier/recommended", "plugin:svelte/recommended"],
"globals": {
"APP_NAME": "readonly",
"APP_VERSION": "readonly"
},
"overrides": [
{
"files": ["**/*.svelte"],
"processor": "svelte3/svelte3"
},
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module"
},
"plugins": [
"svelte3",
"@typescript-eslint/eslint-plugin",
"prettier",
"write-good-comments",
"import",
"promise",
"sort-keys-fix",
"this",
"no-unsanitized",
"simple-import-sort"
],
"rules": {
"indent": ["error", 4],

"no-console": "error",

"no-debugger": "error",

"no-unsanitized/method": "error",

"no-unsanitized/property": "error",

"no-var": "error",
"promise/always-return": "error",

"promise/avoid-new": "warn",

"promise/catch-or-return": "error",

"promise/no-callback-in-promise": "warn",

"promise/no-native": "off",

"promise/no-nesting": "warn",

"promise/no-new-statics": "error",

"promise/no-promise-in-callback": "warn",

"promise/no-return-in-finally": "warn",

"promise/no-return-wrap": "error",

"promise/param-names": "error",

"promise/valid-params": "warn",

"sort-keys-fix/sort-keys-fix": "warn",
"this/no-this": "error",
"write-good-comments/write-good-comments": "warn",
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
]
},
"settings": {
"svelte3/typescript": true
}
}
51 changes: 8 additions & 43 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,45 +1,10 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

.svelte-kit

# dependencies
node_modules
.pnp
.pnp.js

# testing
coverage

# next.js
dist
.svelte-kit

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local
node_modules
/build
/.svelte-kit
/package
.env

# turbo
.turbo

# python venv
venv/

#Replit
.replit
replit.nix
poetry.lock
prproject.toml
.vercel
.env.*
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
File renamed without changes.
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
"singleQuote": false,
"svelteSortOrder": "options-styles-scripts-markup",
"tabWidth": 4,
"tailwindConfig": "./apps/web/tailwind.config.cjs",
"tailwindConfig": "./tailwind.config.cjs",
"trailingComma": "es5"
}
16 changes: 0 additions & 16 deletions .vscode/extensions.json

This file was deleted.

28 changes: 16 additions & 12 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.detectIndentation": false,
"editor.formatOnSave": true,
"editor.tabSize": 4,
"eslint.validate": ["json", "jsonc", "svelte"],
"files.associations": {
"*.css": "postcss"
},
"prettier.requireConfig": true
"editor.tabSize": 4,
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
"svelte"
],
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": true,
"source.fixAll.eslint": true,
},
"cSpell.words": [
"HELIUS",
"lamports",
"solana"
],
}
3 changes: 0 additions & 3 deletions apps/.eslintignore

This file was deleted.

4 changes: 0 additions & 4 deletions apps/web/.eslintrc

This file was deleted.

10 changes: 0 additions & 10 deletions apps/web/.gitignore

This file was deleted.

18 changes: 0 additions & 18 deletions apps/web/.vscode/settings.json

This file was deleted.

65 changes: 0 additions & 65 deletions apps/web/package.json

This file was deleted.

7 changes: 0 additions & 7 deletions apps/web/src/lib/components/modals/menu.svelte

This file was deleted.

Loading

0 comments on commit ec574ba

Please sign in to comment.