Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .cursor/rules/abcd.mdc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
description: best practicese css5 feaure andpopove
globs: *.css
alwaysApply: false
---

# Your rule content

- use grid whenever posibble
-
2 changes: 2 additions & 0 deletions .vscode/dictionaries/project-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@ frontmatter
getbuffer
GSTIN
heroicons
hidenseek
hookform
imread
imwrite
Jaati
jsonify
kmeans
linalg
Expand Down
5 changes: 3 additions & 2 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"aaron-bond.better-comments",
"Heron.firefox-devtools-theme",
"GitHub.github-vscode-theme",
"xkeshav.css-color-collector"
"xkeshav.css-color-collector",
"pucelle.vscode-css-navigation"
]
}
}
44 changes: 18 additions & 26 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"git.autofetch": true,
"workbench.startupEditor": "none",
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
Expand Down Expand Up @@ -30,38 +29,31 @@
"git.openRepositoryInParentFolders": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.linkedEditing": true,
"cSpell.userWords": ["nojekyll", "testid"],
"cSpell.userWords": [
"nojekyll",
"testid"
],
"editor.tabSize": 2,
"git.enableSmartCommit": true,
"files.watcherExclude": {
"**/node_modules/*/**": true
},
"files.autoSave": "afterDelay",
"git.branchProtection": ["main", "develop"],
"git.branchProtection": [
"main",
"develop"
],
"[CODEOWNERS]": {
"editor.formatOnSave": false
},
"cSpell.words": ["behaviour", "DUMMYUSER"],
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#e98cf9",
"activityBar.background": "#e98cf9",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#fdf9e1",
"activityBarBadge.foreground": "#15202b",
"commandCenter.border": "#15202b99",
"sash.hoverBorder": "#e98cf9",
"statusBar.background": "#e05bf7",
"statusBar.foreground": "#15202b",
"statusBarItem.hoverBackground": "#d72af5",
"statusBarItem.remoteBackground": "#e05bf7",
"statusBarItem.remoteForeground": "#15202b",
"titleBar.activeBackground": "#e05bf7",
"titleBar.activeForeground": "#15202b",
"titleBar.inactiveBackground": "#e05bf799",
"titleBar.inactiveForeground": "#15202b99"
},
"cSpell.words": [
"behaviour",
"DUMMYUSER"
],
"peacock.color": "#e05bf7",
"css.format.enable": true,
"css.lint.unknownAtRules": "ignore"
}
"css.validate": true,
"css.lint.unknownAtRules": "ignore",
"css.lint.unknownProperties": "ignore",
"css.hover.documentation": true,
"css.hover.references": true,
}
42 changes: 20 additions & 22 deletions abcd.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
"javascript.updateImportsOnFileMove.enabled": "always",
"js/ts.implicitProjectConfig.checkJs": true,
"peacock.affectSideBarBorder": true,
"peacock.color": "#abcd00",
"peacock.color": "#6A3B98",
"prettier.documentSelectors": [
"**/*.astro"
],
Expand All @@ -157,25 +157,25 @@
"window.zoomLevel": 0.5,
"workbench.colorTheme": "Tokyo Night Storm",
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#d5ff01",
"activityBar.background": "#d5ff01",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#00a0bf",
"activityBar.activeBackground": "#844cba",
"activityBar.background": "#844cba",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#45301b",
"activityBarBadge.foreground": "#e7e7e7",
"commandCenter.border": "#15202b99",
"sash.hoverBorder": "#d5ff01",
"sideBar.border": "#d5ff01",
"statusBar.background": "#abcd00",
"statusBar.foreground": "#15202b",
"statusBarItem.hoverBackground": "#809a00",
"statusBarItem.remoteBackground": "#abcd00",
"statusBarItem.remoteForeground": "#15202b",
"titleBar.activeBackground": "#abcd00",
"titleBar.activeForeground": "#15202b",
"titleBar.inactiveBackground": "#abcd0099",
"titleBar.inactiveForeground": "#15202b99",
"tab.activeBorder": "#d5ff01"
"commandCenter.border": "#e7e7e799",
"sash.hoverBorder": "#844cba",
"sideBar.border": "#844cba",
"statusBar.background": "#6a3b98",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#844cba",
"statusBarItem.remoteBackground": "#6a3b98",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#6a3b98",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#6a3b9899",
"titleBar.inactiveForeground": "#e7e7e799",
"tab.activeBorder": "#844cba"
},
"files.exclude": {
"**/.git": false,
Expand All @@ -192,8 +192,6 @@
"files.readonlyInclude": {
".githooks/**": true
},
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
}
"typescript.preferences.preferGoToSourceDefinition": true
}
}
2 changes: 1 addition & 1 deletion components.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
"components": "components",
"utils": "utils"
}
}
}
Loading