Skip to content

Commit

Permalink
changing the doc and the project project-structure
Browse files Browse the repository at this point in the history
  • Loading branch information
wildduck2 committed Aug 13, 2024
1 parent 24cd56f commit 32074a4
Show file tree
Hide file tree
Showing 458 changed files with 26,867 additions and 26,136 deletions.
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# editorconfig.org
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
31 changes: 31 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"$schema": "https://json.schemastore.org/eslintrc",
"root": true,
"extends": [
"next/core-web-vitals",
"turbo",
"prettier",
"plugin:tailwindcss/recommended"
],
"plugins": ["tailwindcss"],
"rules": {
"@next/next/no-html-link-for-pages": "off",
"tailwindcss/no-custom-classname": "off",
"tailwindcss/classnames-order": "error"
},
"settings": {
"tailwindcss": {
"callees": ["cn", "cva"],
"config": "tailwind.config.cjs"
},
"next": {
"rootDir": ["apps/*/"]
}
},
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"parser": "@typescript-eslint/parser"
}
]
}
52 changes: 32 additions & 20 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,24 +1,36 @@
# Logs
logs
*.log
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
node_modules
.pnp
.pnp.js

# testing
coverage

# next.js
.next/
out/
build

# misc
.DS_Store
*.pem

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

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

# turbo
.turbo

.contentlayer
tsconfig.tsbuildinfo
18 changes: 18 additions & 0 deletions .kodiak.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# .kodiak.toml
version = 1

[merge]
automerge_label = "automerge"
require_automerge_label = true
method = "squash"
delete_branch_on_merge = true
optimistic_updates = false
prioritize_ready_to_merge = true
notify_on_conflict = true

[merge.message]
title = "pull_request_title"
body = "pull_request_body"
include_pr_number = true
body_type = "markdown"
strip_html_comments = true
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
auto-install-peers=true
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v20.5.1
6 changes: 6 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
dist
node_modules
.next
build
.contentlayer
apps/www/pages/api/registry.json
12 changes: 0 additions & 12 deletions .prettierrc

This file was deleted.

17 changes: 0 additions & 17 deletions .storybook/main.ts

This file was deleted.

14 changes: 0 additions & 14 deletions .storybook/preview.ts

This file was deleted.

3 changes: 0 additions & 3 deletions docs/.eslintrc.json

This file was deleted.

36 changes: 0 additions & 36 deletions docs/.gitignore

This file was deleted.

21 changes: 0 additions & 21 deletions docs/LICENSE

This file was deleted.

75 changes: 0 additions & 75 deletions docs/README.md

This file was deleted.

14 changes: 0 additions & 14 deletions docs/app/docs/[[...slug]]/layout.tsx

This file was deleted.

59 changes: 0 additions & 59 deletions docs/app/docs/[[...slug]]/page.tsx

This file was deleted.

Loading

0 comments on commit 32074a4

Please sign in to comment.