Skip to content

Commit

Permalink
Removed Grunt. Removed unused dev dependencies. Add eslint config. Fi…
Browse files Browse the repository at this point in the history
…xed listing errors
  • Loading branch information
taylorhakes committed Mar 19, 2016
1 parent 3e69540 commit 22fe3b3
Show file tree
Hide file tree
Showing 6 changed files with 234 additions and 222 deletions.
11 changes: 2 additions & 9 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,8 @@ root = true

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

[*.{md}]
trim_trailing_whitespace = false

# Matches the exact files either package.json or .travis.yml
[{package.json}]
indent_style = space
indent_size = 2
26 changes: 26 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
module.exports = {
"env": {
"browser": true,
"commonjs": true,
"node": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
};
Loading

0 comments on commit 22fe3b3

Please sign in to comment.