From 362264a22aca7f601c62253d096f32ae284c2b51 Mon Sep 17 00:00:00 2001 From: syropian Date: Sun, 24 Jul 2016 23:36:38 -0400 Subject: [PATCH] adding editorconfig and gitattributes, attempting to get spec passing on travis --- .editorconfig | 12 ++++++++++++ .gitattributes | 1 + test/VueInputAutosize.spec.js | 2 +- 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 .editorconfig create mode 100644 .gitattributes diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..4a7ea30 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..176a458 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto diff --git a/test/VueInputAutosize.spec.js b/test/VueInputAutosize.spec.js index 6c1fd67..a1fb57c 100644 --- a/test/VueInputAutosize.spec.js +++ b/test/VueInputAutosize.spec.js @@ -104,7 +104,7 @@ describe("vue-input-autosize", () => { template: "", data(){ return { - msg: "Hi" + msg: "a" } } });