Skip to content

Commit 0947089

Browse files
committed
Add .editorconfig
1 parent 14b0713 commit 0947089

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

.editorconfig

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
root = true
4+
5+
[*]
6+
end_of_line = lf
7+
insert_final_newline = true
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
indent_style = space

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
*~
22
\#*
3+
!.editorconfig
4+
!.gitignore

tests.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -189,17 +189,17 @@
189189
"patch": [{"op": "replace", "path": "/foo", "value": "truthy"}],
190190
"expected": {"foo": "truthy"},
191191
"comment": "null value should be valid obj property to be replaced with something truthy" },
192-
192+
193193
{ "doc": {"foo": null},
194194
"patch": [{"op": "move", "from": "/foo", "path": "/bar"}],
195195
"expected": {"bar": null},
196196
"comment": "null value should be valid obj property to be moved" },
197-
197+
198198
{ "doc": {"foo": null},
199199
"patch": [{"op": "copy", "from": "/foo", "path": "/bar"}],
200200
"expected": {"foo": null, "bar": null},
201201
"comment": "null value should be valid obj property to be copied" },
202-
202+
203203
{ "doc": {"foo": null},
204204
"patch": [{"op": "remove", "path": "/foo"}],
205205
"expected": {},

0 commit comments

Comments
 (0)