From 55d926b05565f9ad0baacccf3c4fb693da89ba2e Mon Sep 17 00:00:00 2001 From: Kevin Hester Date: Wed, 16 Apr 2014 09:56:42 -1000 Subject: [PATCH] code style: add indentation rules for makefiles (and remove some web file types that will probably never be in APM) --- .editorconfig | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.editorconfig b/.editorconfig index 1fa9ef15a9..42f5867c90 100644 --- a/.editorconfig +++ b/.editorconfig @@ -11,17 +11,15 @@ root = true [*] indent_style = space indent_size = 4 -tab_size = 8 end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true -[*.coffee] -indent_size = 2 +[*.mk] +indent_style = tab +indent_size = 8 -[*.js] -indent_size = 2 - -# [*.md] -# trim_trailing_whitespace = false +[{makefile,Makefile}] +indent_style = tab +indent_size = 8