Skip to content

Commit

Permalink
fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
liabru committed Nov 14, 2015
1 parent b5988c1 commit 0165e74
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@
]
},
"env": {
"node": true,
"browser": true,
"jquery": true
"jquery": true,
"amd": true
},
"extends": "eslint:recommended"
}
4 changes: 2 additions & 2 deletions jquery.matchHeight.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* License: MIT
*/

;(function(factory) {
;(function(factory) { // eslint-disable-line no-extra-semi
'use strict';
if (typeof define === 'function' && define.amd) {
// AMD
Expand All @@ -16,7 +16,7 @@
// Global
factory(jQuery);
}
})(function($) { // eslint-disable-line no-extra-semi
})(function($) {
/*
* internal
*/
Expand Down

0 comments on commit 0165e74

Please sign in to comment.