Skip to content

Commit 532e149

Browse files
deivid-rodriguezjosepjaume
authored andcommittedAug 16, 2017
Normalizing final new lines (decidim#1744)
* Enfore line ending config inside project * Ammend all missing final new lines I used the following script ```bash for file in $(git grep --cached -Il '' | grep -v /vendor/) do if [ -n "$(tail -c 1 < "$file")" ] then echo >> "$file" fi done ``` * Add an editorconfig file To try to minimize diff noise caused by different editors.
1 parent f5d6698 commit 532e149

File tree

182 files changed

+191
-180
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

182 files changed

+191
-180
lines changed
 

‎.dockerignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
.byebug_history
33
pkg/
44
.git
5-
.github
5+
.github

‎.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true

0 commit comments

Comments
 (0)
Please sign in to comment.