Skip to content

Commit

Permalink
Replacing jshint with eslint
Browse files Browse the repository at this point in the history
This is a first step to modernizing the codebase and to make it work
with npm. Ticket squarefeet#95 currently tracks the npm build process.
  • Loading branch information
AndrewRayCode committed Mar 16, 2016
1 parent f225e24 commit aecfccb
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 64 deletions.
14 changes: 14 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"semi": 2,
"no-undef": 1
}
}
64 changes: 0 additions & 64 deletions .jshintrc

This file was deleted.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"spe"
],
"devDependencies": {
"eslint": "^2.4.0",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-concat": "^0.5.1",
Expand Down

0 comments on commit aecfccb

Please sign in to comment.