2
0
mirror of https://github.com/tenrok/vue-tribute.git synced 2026-06-21 05:30:36 +03:00

adding editorconfig and gitattributes, attempting to get spec passing on travis

This commit is contained in:
syropian
2016-07-24 23:36:38 -04:00
parent 292a48a261
commit 362264a22a
3 changed files with 14 additions and 1 deletions
+12
View File
@@ -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
+1
View File
@@ -0,0 +1 @@
* text=auto
+1 -1
View File
@@ -104,7 +104,7 @@ describe("vue-input-autosize", () => {
template: "<input type='text' :value='msg' v-el:test v-input-autosize />",
data(){
return {
msg: "Hi"
msg: "a"
}
}
});