Skip to content

Commit f6e1dff

Browse files
committed
popup fixed
2 parents 0c5de5e + ec9e777 commit f6e1dff

File tree

19 files changed

+267
-70
lines changed

19 files changed

+267
-70
lines changed

.githooks/pre-commit

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -21,26 +21,6 @@ echo "Running pre-commit checks for branch: $BRANCH_NAME"
2121
echo "$BRANCH_NAME" | grep -Eq '^(feature|bugfix|hotfix|task)/[A-Za-z]+-[0-9]+'
2222
if [ $? -ne 0 ]; then
2323
echo "Error: Branch name '$BRANCH_NAME' is invalid."
24-
echo "Use a valid branch naming convention, e.g., feature/XYZ-123-description."
24+
echo "Use a valid branch naming convention, e.g., feature|bugfix|hotfix|task/XYZ-123-description."
2525
exit 1
26-
fi
27-
28-
# Step 2: Run poetry linting tools
29-
echo "Running poetry linting tools..."
30-
if ! poetry run flake8 .; then
31-
echo "flake8 failed. Aborting commit."
32-
exit 1
33-
fi
34-
35-
if ! poetry run black --check .; then
36-
echo "black failed. Aborting commit."
37-
exit 1
38-
fi
39-
40-
if ! poetry run mypy .; then
41-
echo "mypy failed. Aborting commit."
42-
exit 1
43-
fi
44-
45-
echo "Pre-commit checks passed!"
46-
exit 0
26+
fi

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ desktop.ini
2020
# IDE
2121
*.sublime-*
2222
/.idea
23-
.vscode/*
2423
*~
2524

2625
# environment variables

.vscode/cspell.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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+
"name": "geo",
13+
"path": "./dictionaries/india.txt"
14+
}
15+
],
16+
"dictionaries": [
17+
"projectTerms",
18+
"teamMember",
19+
"india"
20+
],
21+
"ignorePaths": [
22+
"**/*.svg",
23+
"src/assets/json/*.json"
24+
],
25+
"languageSettings": [
26+
{
27+
"languageId": "*",
28+
"dictionaries": [
29+
"projectTerms"
30+
]
31+
},
32+
{
33+
"languageId": "json, md",
34+
"dictionaries": [
35+
"teamMember",
36+
"geo"
37+
]
38+
}
39+
],
40+
"enableFiletypes": [
41+
"astro",
42+
"jsx",
43+
"tsx"
44+
]
45+
}

.vscode/dictionaries/india.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Andhra
2+
Kuchipudi
3+
Pradesh
4+
Sankranti
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
andhrapradesh
2+
argmax
3+
argmin
4+
astro
5+
astrojs
6+
astype
7+
audiorec
8+
audiorecorder
9+
bincount
10+
clsx
11+
cmdk
12+
datetime
13+
dhaga
14+
ensurepip
15+
fontsource
16+
frontmatter
17+
getbuffer
18+
GSTIN
19+
heroicons
20+
hookform
21+
imread
22+
imwrite
23+
jsonify
24+
kmeans
25+
linalg
26+
lucide
27+
Organja
28+
orgenja
29+
Peina
30+
prerender
31+
Reddy
32+
roboto
33+
Rushi
34+
shadcn
35+
signup
36+
sitemapindex
37+
skimage
38+
streamlit
39+
tailwindcss
40+
threadzip
41+
Threazip
42+
vaul
43+
venv
44+
waitlist
45+
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/settings.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,25 @@
3030
"git.openRepositoryInParentFolders": "always",
3131
"typescript.updateImportsOnFileMove.enabled": "always",
3232
"editor.linkedEditing": true,
33-
"cSpell.userWords": ["nojekyll", "testid"],
33+
"cSpell.userWords": [
34+
"nojekyll",
35+
"testid"
36+
],
3437
"editor.tabSize": 2,
3538
"git.enableSmartCommit": true,
3639
"files.watcherExclude": {
3740
"**/node_modules/*/**": true
3841
},
3942
"files.autoSave": "afterDelay",
40-
"git.branchProtection": ["main", "develop"],
43+
"git.branchProtection": [
44+
"main",
45+
"develop"
46+
],
4147
"[CODEOWNERS]": {
4248
"editor.formatOnSave": false
4349
},
4450
"cSpell.words": [
51+
"behaviour",
4552
"DUMMYUSER"
4653
],
4754
"workbench.colorCustomizations": {
@@ -66,4 +73,4 @@
6673
"peacock.color": "#e05bf7",
6774
"css.format.enable": true,
6875
"css.lint.unknownAtRules": "ignore"
69-
}
76+
}

.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+
}

abcd.code-workspace

Lines changed: 33 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"editor.inlayHints.enabled": "offUnlessPressed",
6161
"editor.insertSpaces": true,
6262
"editor.linkedEditing": true,
63-
"editor.minimap.enabled": false,
63+
"editor.minimap.enabled": true,
6464
"editor.minimap.renderCharacters": false,
6565
"editor.minimap.size": "fill",
6666
"editor.multiCursorModifier": "alt",
@@ -73,9 +73,25 @@
7373
"javascript": "javascriptreact"
7474
},
7575
"eslint.options": {
76-
"extensions": [".js", ".jsx", ".md", ".mdx", ".ts", ".tsx", ".astro"]
76+
"extensions": [
77+
".js",
78+
".jsx",
79+
".md",
80+
".mdx",
81+
".ts",
82+
".tsx",
83+
".astro"
84+
]
7785
},
78-
"eslint.validate": ["mdx", "markdown", "javascript", "javascriptreact", "typescript", "typescriptreact", "astro"],
86+
"eslint.validate": [
87+
"mdx",
88+
"markdown",
89+
"javascript",
90+
"javascriptreact",
91+
"typescript",
92+
"typescriptreact",
93+
"astro"
94+
],
7995
"explorer.compactFolders": false,
8096
"explorer.confirmDelete": false,
8197
"explorer.confirmDragAndDrop": false,
@@ -103,7 +119,10 @@
103119
},
104120
"git.autofetch": true,
105121
"git.branchPrefix": "feature/",
106-
"git.branchProtection": ["develop", "main"],
122+
"git.branchProtection": [
123+
"develop",
124+
"main"
125+
],
107126
"git.branchRandomName.enable": true,
108127
"git.confirmSync": false,
109128
"git.enableCommitSigning": false,
@@ -114,7 +133,9 @@
114133
"js/ts.implicitProjectConfig.checkJs": true,
115134
"peacock.affectSideBarBorder": true,
116135
"peacock.color": "#abcd00",
117-
"prettier.documentSelectors": ["**/*.astro"],
136+
"prettier.documentSelectors": [
137+
"**/*.astro"
138+
],
118139
"prettier.printWidth": 120,
119140
"prettier.quoteProps": "consistent",
120141
"prettier.singleQuote": false,
@@ -144,8 +165,7 @@
144165
"cSpell.words": [],
145166
"workbench.editor.limit.excludeDirty": true,
146167
"files.readonlyInclude": {
147-
".githooks/**": true,
148-
".github/**": true
168+
".githooks/**": true
149169
},
150170
"workbench.colorCustomizations": {
151171
"activityBar.activeBackground": "#d5ff01",
@@ -165,7 +185,11 @@
165185
"titleBar.activeBackground": "#abcd00",
166186
"titleBar.activeForeground": "#15202b",
167187
"titleBar.inactiveBackground": "#abcd0099",
168-
"titleBar.inactiveForeground": "#15202b99"
188+
"titleBar.inactiveForeground": "#15202b99",
189+
"tab.activeBorder": "#d5ff01"
190+
},
191+
"files.exclude": {
192+
"**/.git": false
169193
}
170194
}
171-
}
195+
}

0 commit comments

Comments
 (0)