From 1cd1db9a40b539f1c3c0de4ebeea7df2c442d5c8 Mon Sep 17 00:00:00 2001 From: borjandev <64651636+borjandev@users.noreply.github.com> Date: Wed, 17 Apr 2024 18:26:43 +0200 Subject: [PATCH] chore(shorebird_cli): set vscode line length and editor rulers to 80 characters (#1908) Co-authored-by: Felix Angelov --- .vscode/settings.json | 40 ++++++++++++++++++++++------------------ 1 file changed, 22 insertions(+), 18 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 5756759a..557b4326 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,19 +1,23 @@ { - "cSpell.words": [ - "aarch", - "androideabi", - "armv", - "calloc", - "cbindgen", - "dylib", - "libapp", - "libc", - "libflutter", - "repr", - "reqwest", - "rollouts", - "rustup", - "struct", - "tempdir" - ] -} \ No newline at end of file + "dart.lineLength": 80, + "[dart]": { + "editor.rulers": [80] + }, + "cSpell.words": [ + "aarch", + "androideabi", + "armv", + "calloc", + "cbindgen", + "dylib", + "libapp", + "libc", + "libflutter", + "repr", + "reqwest", + "rollouts", + "rustup", + "struct", + "tempdir" + ] +}