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(eslint): set CRLF to error out #320

Open
wants to merge 2 commits into
base: xhm/lf
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
@@ -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
6 changes: 5 additions & 1 deletion .eslintrc
Expand Up @@ -2,6 +2,10 @@
"root": true,
"extends": "standard",
"rules": {
"no-var": "off"
"no-var": "off",
"linebreak-style": [
"error",
"unix"
]
}
}
2 changes: 2 additions & 0 deletions .gitattributes
@@ -0,0 +1,2 @@
# Enforce Unix newlines
* text=auto eol=lf
1 change: 1 addition & 0 deletions gruntfile.js
@@ -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