summaryrefslogtreecommitdiffstats
path: root/.clang-format
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2019-03-27 11:09:39 +0100
committerUwe Klotz <uklotz@mixxx.org>2019-04-09 21:11:59 +0200
commit067484135d2acc24a404c5c441b66606491ef57e (patch)
treea488b1d5d272856865577c4efd27a6892ba3c9d5 /.clang-format
parent12f1d686210dd67023ad86620595d045fd1b5052 (diff)
Exclude .js files from auto-formatting
Diffstat (limited to '.clang-format')
-rw-r--r--.clang-format4
1 files changed, 3 insertions, 1 deletions
diff --git a/.clang-format b/.clang-format
index 23d7e1af85..9530f729b1 100644
--- a/.clang-format
+++ b/.clang-format
@@ -23,8 +23,10 @@ ReflowComments: false
SpacesBeforeTrailingComments: 1
---
Language: JavaScript
+# Don't format .js files yet
+DisableFormat: true
---
Language: Proto
-# Don't format .proto files.
+# Don't format .proto files yet
DisableFormat: true
...