Skip to content

Commit

Permalink
Remove jshint task from gruntfile since the API has changed. Later th…
Browse files Browse the repository at this point in the history
…e correct change will be to start using eslint
  • Loading branch information
kimmobrunfeldt committed Oct 28, 2019
1 parent 29c5811 commit e0e1a8a
Show file tree
Hide file tree
Showing 3 changed files with 13,581 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,4 @@ secrets.sh

# Local dev bundle
local-dev/bundle.js
.env
10 changes: 0 additions & 10 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,6 @@ _.each(browserGroups, function(group, index) {
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
files: ['src/*.js', 'test/**/*.js'],
options: {
globals: {
jQuery: true,
module: true
}
}
},
shell: {
stageMinified: {
options: {
Expand Down Expand Up @@ -170,7 +161,6 @@ module.exports = function(grunt) {
bump = bump || 'patch';

grunt.task.run([
'jshint',
'test',
'build',
'stageMinified',
Expand Down
Loading

0 comments on commit e0e1a8a

Please sign in to comment.