Skip to content

Instantly share code, notes, and snippets.

@crstnmac
Created March 4, 2023 05:44
Show Gist options
  • Save crstnmac/d029ce8b4cab3f2066cda3043b85b1db to your computer and use it in GitHub Desktop.
Save crstnmac/d029ce8b4cab3f2066cda3043b85b1db to your computer and use it in GitHub Desktop.
settings
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"scss.validate": false,
"editor.quickSuggestions": {
"strings": true
},
"editor.autoClosingQuotes": "always",
"tailwindCSS.experimental.classRegex": [
"tw`([^`]*)", // tw`...`
"tw=\"([^\"]*)", // <div tw="..." />
"tw={\"([^\"}]*)", // <div tw={"..."} />
"tw\\.\\w+`([^`]*)", // tw.xxx`...`
"tw\\(.*?\\)`([^`]*)" // tw(Component)`...`
],
"tailwindCSS.includeLanguages": {
"typescript": "javascript",
"typescriptreact": "javascript"
},
"react-native-tools.showUserTips": false,
"javascript.validate.enable": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.cursorSmoothCaretAnimation": "on",
"editor.cursorBlinking": "phase",
"explorer.confirmDragAndDrop": false,
"terminal.integrated.defaultProfile.windows": "PowerShell",
"editor.guides.bracketPairs": "active",
"editor.bracketPairColorization.enabled": true,
"editor.linkedEditing": true,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"liveServer.settings.donotShowInfoMsg": true,
"jshint.enable": false,
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.inlineSuggest.enabled": true,
"prettier.useEditorConfig": false,
"eslint.validate": ["javascript"],
"prettier.bracketSpacing": false,
"powershell.powerShellDefaultVersion": "Windows PowerShell (x64)",
"workbench.colorTheme": "Night Wolf (dark gray)",
"diffEditor.codeLens": true,
"workbench.colorCustomizations": {},
"editor.fontFamily": "Recursive",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "italic font",
"scope": ["comment", "storage", "entity.other"],
"settings": {
"fontStyle": "italic"
}
}
]
},
"editor.wordWrap": "on",
"editor.fontWeight": "300",
"workbench.productIconTheme": "icons-carbon",
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"rapidapi.terminalLink.enabled": false,
"cSpell.userWords": [
"bootload",
"cashfree",
"deeplink",
"gorhom",
"Localfarmers",
"MMKV",
"Mulipart",
"nativewind",
"pincode",
"Pressable",
"tanstack",
"zustand"
],
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"git.openRepositoryInParentFolders": "never",
"editor.tabSize": 2,
"tailwindCSS.classAttributes": ["class", "className", "ngClass", "style"],
"tailwindCSS.emmetCompletions": true,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment