Skip to content

Instantly share code, notes, and snippets.

View gsag's full-sized avatar
Developing...

Guilherme Alves gsag

Developing...
View GitHub Profile
@gsag
gsag / dart-vscode-settings.js
Last active April 14, 2020 04:08
Dart Settings (VS Code)
{
// Copied from: https://dartcode.org/docs/recommended-settings/
// Causes the debug view to automatically appear when a breakpoint is hit. This
// setting is global and not configurable per-language.
"debug.openDebug": "openOnDebugBreak",
// Enables sdk default formatter - It enforces rules above VS Code settings
// Copied from: https://github.com/Dart-Code/Dart-Code/issues/914#issuecomment-536053940
// Why? https://github.com/dart-lang/dart_style/wiki/FAQ#why-cant-i-configure-it
"dart.enableSdkFormatter": true,