Skip to content

Instantly share code, notes, and snippets.

@tranquan
Last active July 12, 2018 11:51
Show Gist options
  • Save tranquan/c2a4e9b787579d364ece040e80397ccf to your computer and use it in GitHub Desktop.
Save tranquan/c2a4e9b787579d364ece040e80397ccf to your computer and use it in GitHub Desktop.
vscode workspace settings for react-native project
{
"eslint.enable": false,
"tslint.enable": false,
"editor.formatOnSave": true,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.wordWrapColumn": 100,
"editor.parameterHints": false,
"editor.rulers": [100],
"typescriptHero.imports.disableImportRemovalOnOrganize": false,
"typescriptHero.imports.multiLineWrapThreshold": 100,
"typescriptHero.imports.organizeOnSave": true,
"typescriptHero.imports.insertSemicolons": true,
"typescriptHero.imports.insertSpaceBeforeAndAfterImportBraces": true,
"typescriptHero.imports.stringQuoteStyle": "\"",
"typescriptHero.imports.grouping": [
{
"identifier": "/^(react|react-native)$/",
"order": "asc"
},
"Modules",
{
"identifier": "/^(src|app|constants|shared|redux)/",
"order": "asc"
},
"Workspace",
"Plains",
"Remaining"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment