Skip to content

Instantly share code, notes, and snippets.

@alexx855
Created March 18, 2023 08:35
Show Gist options
  • Save alexx855/4d82d1d14b32f138053adafb4c418b90 to your computer and use it in GitHub Desktop.
Save alexx855/4d82d1d14b32f138053adafb4c418b90 to your computer and use it in GitHub Desktop.
VSCode personal settings
{
"solidity.defaultCompiler": "localNodeModule",
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.formatOnPaste": false, // required
"editor.formatOnType": false, // required
"editor.formatOnSave": true, // optional
"editor.formatOnSaveMode": "modifications", // require
"files.autoSave": "onFocusChange", // optional but recommended
"editor.codeActionsOnSave": {
"source.fixAll": false,
"source.fixAll.eslint": true
},
"editor.detectIndentation": false,
"editor.tabSize": 2,
"editor.insertSpaces": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment