Skip to content

Commit 680a3eb

Browse files
committed
Merge branch 'main' of ssh://github.com/recursivezero/abcd into develop
2 parents f2a91a6 + 4f4bf4f commit 680a3eb

File tree

6 files changed

+137
-2
lines changed

6 files changed

+137
-2
lines changed

.vscode/cspell.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"dictionaryDefinitions": [
3+
{
4+
"name": "projectTerms",
5+
"path": "./dictionaries/project-words.txt"
6+
},
7+
{
8+
"name": "teamMember",
9+
"path": "./dictionaries/team-member.txt"
10+
}
11+
],
12+
"dictionaries": ["projectTerms", "teamMember"],
13+
"languageSettings": [
14+
{
15+
"languageId": "*",
16+
"dictionaries": ["projectTerms"]
17+
},
18+
{
19+
"languageId": "json, md",
20+
"dictionaries": ["teamMember"]
21+
}
22+
],
23+
"enableFiletypes": ["astro", "jsx", "tsx"]
24+
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
argmax
2+
argmin
3+
astro
4+
astrojs
5+
astype
6+
audiorec
7+
audiorecorder
8+
bincount
9+
clsx
10+
cmdk
11+
datetime
12+
dhaga
13+
ensurepip
14+
fontsource
15+
frontmatter
16+
getbuffer
17+
GSTIN
18+
heroicons
19+
hookform
20+
imread
21+
imwrite
22+
jsonify
23+
kmeans
24+
linalg
25+
lucide
26+
Organja
27+
orgenja
28+
Peina
29+
prerender
30+
Reddy
31+
roboto
32+
Rushi
33+
shadcn
34+
signup
35+
sitemapindex
36+
skimage
37+
streamlit
38+
tailwindcss
39+
threadzip
40+
Threazip
41+
vaul
42+
venv
43+
waitlist
44+
werkzeug
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
chebale
2+
hitesh
3+
keshav
4+
malhar
5+
omkar
6+
parvez
7+
soumyanil
8+
xkeshav
9+
aditya
10+
vansh
11+
vamil

.vscode/extensions.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"recommendations": [
3+
"astro-build.astro-vscode",
34
"streetsidesoftware.code-spell-checker",
45
"alefragnani.project-manager",
56
"esbenp.prettier-vscode",

.vscode/tailwind.json

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"version": 1.1,
3+
"atDirectives": [
4+
{
5+
"name": "@tailwind",
6+
"description": "Use the `@tailwind` directive to insert Tailwind's `base`, `components`, `utilities` and `screens` styles into your CSS.",
7+
"references": [
8+
{
9+
"name": "Tailwind Documentation",
10+
"url": "https://tailwindcss.com/docs/functions-and-directives#tailwind"
11+
}
12+
]
13+
},
14+
{
15+
"name": "@apply",
16+
"description": "Use the `@apply` directive to inline any existing utility classes into your own custom CSS. This is useful when you find a common utility pattern in your HTML that you’d like to extract to a new component.",
17+
"references": [
18+
{
19+
"name": "Tailwind Documentation",
20+
"url": "https://tailwindcss.com/docs/functions-and-directives#apply"
21+
}
22+
]
23+
},
24+
{
25+
"name": "@responsive",
26+
"description": "You can generate responsive variants of your own classes by wrapping their definitions in the `@responsive` directive:\n```css\n@responsive {\n .alert {\n background-color: #E53E3E;\n }\n}\n```\n",
27+
"references": [
28+
{
29+
"name": "Tailwind Documentation",
30+
"url": "https://tailwindcss.com/docs/functions-and-directives#responsive"
31+
}
32+
]
33+
},
34+
{
35+
"name": "@screen",
36+
"description": "The `@screen` directive allows you to create media queries that reference your breakpoints by **name** instead of duplicating their values in your own CSS:\n```css\n@screen sm {\n /* ... */\n}\n```\n…gets transformed into this:\n```css\n@media (min-width: 640px) {\n /* ... */\n}\n```\n",
37+
"references": [
38+
{
39+
"name": "Tailwind Documentation",
40+
"url": "https://tailwindcss.com/docs/functions-and-directives#screen"
41+
}
42+
]
43+
},
44+
{
45+
"name": "@variants",
46+
"description": "Generate `hover`, `focus`, `active` and other **variants** of your own utilities by wrapping their definitions in the `@variants` directive:\n```css\n@variants hover, focus {\n .btn-brand {\n background-color: #3182CE;\n }\n}\n```\n",
47+
"references": [
48+
{
49+
"name": "Tailwind Documentation",
50+
"url": "https://tailwindcss.com/docs/functions-and-directives#variants"
51+
}
52+
]
53+
}
54+
]
55+
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"lint": "prettier -w --cache . && prettier -w --cache **/*.astro",
4545
"clean": "rm -rf dist rm -rf build",
4646
"nuke": "shx rm -rf node_modules && rm package-lock.json && npm run clean",
47-
"postinstall": "sh ./setup-hooks.sh"
47+
"postinstall": "shx ./setup-hooks.sh"
4848
},
4949
"dependencies": {
5050
"@astrojs/check": "0.9.4",
@@ -87,4 +87,4 @@
8787
"prettier-plugin-tailwindcss": "0.6.8",
8888
"shx": "0.3.4"
8989
}
90-
}
90+
}

0 commit comments

Comments
 (0)