Skip to content

Commit

Permalink
Add newline at end of file
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Constans committed Mar 27, 2015
1 parent 88a2ace commit 4b95ecf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ proxy_env: {}

# Visit https://github.com/settings/applications
# and generate personal access token
composer_github_oauth: false
composer_github_oauth: false
2 changes: 1 addition & 1 deletion tasks/oauth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
template:
src: ".composer/auth.json.j2"
dest: "~/.composer/auth.json"
when: composer_github_oauth != false
when: composer_github_oauth != false
2 changes: 1 addition & 1 deletion templates/.composer/auth.json.j2
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"github-oauth": {
"github.com": "{{ composer_github_oauth }}"
}
}
}

1 comment on commit 4b95ecf

@igormukhingmailcom
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

By the way, I propose you to use .editorconfig.
When I use it - all new lines at end of files adding automatically.

# .editorconfig
root = true

[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8
indent_style = space
indent_size = 4

Please sign in to comment.