Introduction

C# と違ってそこまでコーディングスタイルにこだわりはないけど、気に入らないのが 1 行当たりの文字数。
80 文字が標準らしいけど短過ぎる気がする。
個人的にはこの制限は内包がいいとすら思っている。

How to resolve?

Dart 拡張機能をインストールしていることが前提。
.vscode/settings.json に下記を追記する。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"files.associations": {
"*.proc": "cpp",
...
"algorithm": "cpp"
},
+ "[dart]": {
+ "editor.formatOnSave": true,
+ "editor.formatOnType": true,
+ // "editor.rulers": [
+ // 80
+ // ],
+ "editor.selectionHighlight": false,
+ "editor.suggest.snippetsPreventQuickSuggestions": false,
+ "editor.suggestSelection": "first",
+ "editor.tabCompletion": "onlySnippets",
+ "editor.wordBasedSuggestions": false,
+ "editor.defaultFormatter": "Dart-Code.dart-code",
+ "editor.formatOnPaste": true
+ },
}