From 99f7d7062e6008b66f2266b36502472eb84fe1fa Mon Sep 17 00:00:00 2001 From: camalot Date: Mon, 27 Jun 2016 14:29:34 -0500 Subject: [PATCH 1/2] removed the layout, it seemed to break things --- .../bit13/jenkins/JenkinsDarkThemeDecorator/header.jelly | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/plugin/src/main/resources/com/bit13/jenkins/JenkinsDarkThemeDecorator/header.jelly b/plugin/src/main/resources/com/bit13/jenkins/JenkinsDarkThemeDecorator/header.jelly index 122b77b..fcb2614 100644 --- a/plugin/src/main/resources/com/bit13/jenkins/JenkinsDarkThemeDecorator/header.jelly +++ b/plugin/src/main/resources/com/bit13/jenkins/JenkinsDarkThemeDecorator/header.jelly @@ -1,8 +1,4 @@ - - - - - + From 053c4f644f84ff7834894827954b540a14a5dedf Mon Sep 17 00:00:00 2001 From: camalot Date: Mon, 27 Jun 2016 14:33:24 -0500 Subject: [PATCH 2/2] added .editorconfig --- .editorconfig | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..437b9fc --- /dev/null +++ b/.editorconfig @@ -0,0 +1,28 @@ +# EditorConfig is awesome: http://EditorConfig.org + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true +indent_style = tab +indent_size = 2 + +# Matches multiple files with brace expansion notation +# Set default charset +[*.{less,css}] +charset = utf-8 + +# Tab indentation (no size specified) +[Vagrantfile] +indent_style = tab + +[*.md] +trim_trailing_whitespace = false + +# Matches the exact files either package.json or .travis.yml +[{package.json,*.yml}] +indent_style = space +indent_size = 2