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
{ | |
// 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, |