Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: enforce LF and update .editorconfig #317

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 11 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# editorconfig.org

root = true

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

[*.md]
trim_trailing_whitespace = false
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Enforce Unix newlines
* text=auto eol=lf
1 change: 1 addition & 0 deletions gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Do not add new tasks. Grunt is used only for building and will be replaced.
module.exports = function (grunt) {
grunt.loadTasks('tasks')
grunt.util.linefeed = '\n'
jginsburgn marked this conversation as resolved.
Show resolved Hide resolved
grunt.initConfig({
pkgFile: 'package.json',
build: {
Expand Down