Skip to content

Commit

Permalink
build: enforce LF and update .editorconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Apr 13, 2022
1 parent b7b7e6b commit aca1477
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
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'
grunt.initConfig({
pkgFile: 'package.json',
build: {
Expand Down

0 comments on commit aca1477

Please sign in to comment.