Skip to content

Commit

Permalink
feat(cli): initial version (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
shellscape committed Sep 19, 2023
1 parent 9219304 commit c362cef
Show file tree
Hide file tree
Showing 125 changed files with 4,289 additions and 6,454 deletions.
4 changes: 3 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
apps
node_modules
dist
**/*spec.tsx
**/*spec.tsx

deprecated
9 changes: 8 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
module.exports = {
extends: ['shellscape/typescript', 'plugin:import/typescript'],
overrides: [
{
files: ['*.d.ts'],
rules: {
'no-underscore-dangle': 'off',
'spaced-comment': 'off'
}
},
{
files: ['*.ts', '*.tsx'],
rules: {
Expand All @@ -19,7 +26,7 @@ module.exports = {
}
],
parserOptions: {
project: ['./shared/tsconfig.eslint.json', './packages/*/tsconfig.json'],
project: ['./shared/tsconfig.eslint.json', './packages/**/tsconfig.json'],
tsconfigRootDir: __dirname
},
rules: {
Expand Down
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{
"prettier.singleQuote": true
"prettier.singleQuote": true,
"typescript.tsdk": "node_modules/typescript/lib",
"css.customData": [".vscode/tailwind.json"]
}
9 changes: 9 additions & 0 deletions .vscode/tailwind.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"version": 1.1,
"atDirectives": [
{
"name": "@tailwind",
"description": "Use the @tailwind directive to insert Tailwind's `base`, `components`, `utilities`, and `screens` styles into your CSS."
}
]
}
17 changes: 0 additions & 17 deletions apps/client/.eslintrc.json

This file was deleted.

3 changes: 0 additions & 3 deletions apps/client/.prettierignore

This file was deleted.

8 changes: 0 additions & 8 deletions apps/client/.prettierrc.js

This file was deleted.

4 changes: 0 additions & 4 deletions apps/client/.vscode/settings.json

This file was deleted.

201 changes: 0 additions & 201 deletions apps/client/emails/airbnb-review.tsx

This file was deleted.

5 changes: 0 additions & 5 deletions apps/client/next-env.d.ts

This file was deleted.

11 changes: 0 additions & 11 deletions apps/client/next.config.js

This file was deleted.

48 changes: 0 additions & 48 deletions apps/client/package.json

This file was deleted.

28 changes: 0 additions & 28 deletions apps/client/src/app/home.tsx

This file was deleted.

Loading

0 comments on commit c362cef

Please sign in to comment.