generated from Real-Dev-Squad/website-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* rename sidebar to navbar * fix prettier config not being picked from by the prettier extension * fix padding in prettier config * format files * make navbar responsive for mobile * make navbar responsive for tablet view * add shadow to navbar on mobile * make button responsive for mobile and add app name to dashboard header for mobile * make form card responsive for mobile * integrate api to list all forms & install mock for next router * make dashboard shimmer responsive for mobile * add empty state --------- Co-authored-by: Prakash Choudhary <[email protected]>
- Loading branch information
1 parent
4af7e9e
commit 290533d
Showing
33 changed files
with
22,075 additions
and
34,504 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,64 @@ | ||
{ | ||
/** | ||
/** | ||
Editor rules | ||
------------ | ||
*/ | ||
"editor.formatOnSave": true, | ||
"editor.tabSize": 4, | ||
"prettier.tabWidth": 4, | ||
"prettier.printWidth": 120, | ||
"editor.rulers": [ | ||
{ | ||
"column": 120 | ||
} | ||
], | ||
/** | ||
"editor.formatOnSave": true, | ||
"editor.tabSize": 4, | ||
"editor.insertSpaces": false, | ||
"prettier.tabWidth": 4, | ||
"prettier.printWidth": 120, | ||
"editor.rulers": [ | ||
{ | ||
"column": 120 | ||
} | ||
], | ||
/** | ||
Formatters | ||
------------ | ||
*/ | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
/** | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"[javascript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[javascriptreact]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"prettier.requireConfig": true, | ||
/** | ||
New Lines | ||
------------ | ||
*/ | ||
"files.eol": "\n", | ||
"files.insertFinalNewline": true, | ||
/** | ||
"files.eol": "\n", | ||
"files.insertFinalNewline": true, | ||
/** | ||
Linting | ||
------------ | ||
*/ | ||
"eslint.run": "onSave", | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": "always" | ||
}, | ||
/** | ||
"eslint.run": "onSave", | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": "always" | ||
}, | ||
/** | ||
Miscelaneous | ||
------------ | ||
*/ | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
/** | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
/** | ||
TailwindCSS | ||
------------ | ||
*/ | ||
"tailwindCSS.experimental.classRegex": [ | ||
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"], | ||
["cx\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"] | ||
], | ||
"[jsonc]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
} | ||
"tailwindCSS.experimental.classRegex": [ | ||
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"], | ||
["cx\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"] | ||
], | ||
"[jsonc]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
} | ||
} |
Oops, something went wrong.