From a8e6014d28547b36c7c91ef863fea7349a5de485 Mon Sep 17 00:00:00 2001 From: Georgii Dolzhykov Date: Fri, 28 Oct 2016 21:33:36 +0300 Subject: [PATCH] chore(clang-format): increase ColumnLimit to 100 Does anybody use an 80x25 hardware text-mode terminal to edit this code? Why is this value so low? It doesn't help the readability at all. The Angular 2 project has [has](https://github.com/angular/angular/blob/master/.clang-format) `ColumnLimit: 100`. --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 70d6d17bc..8d1c3c310 100644 --- a/.clang-format +++ b/.clang-format @@ -1,3 +1,3 @@ Language: JavaScript BasedOnStyle: Google -ColumnLimit: 80 +ColumnLimit: 100