Skip to content

Commit

Permalink
fix: correct eslint settings in Gruntfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Krummsdorf committed Dec 18, 2014
1 parent f971a64 commit e84c1af
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module.exports = function (grunt) {
cmd: 'cd demo && node ../node_modules/npm-check-updates/bin/npm-check-updates'
},
run_tests: {
cmd: 'cd demo && grunt test'
cmd: 'cd demo && grunt test --force && grunt ci --force'
},
link: {
cmd: 'npm link'
Expand Down
8 changes: 4 additions & 4 deletions app/templates/_Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,17 +89,17 @@ module.exports = function (grunt) {
all: '<%%= jshintFiles %>',
jslint: {
options: {
reporter: 'jslint',
reporterOutput: 'build/reports/lint/eslint.xml'
format: 'jslint-xml',
'output-file': 'build/reports/lint/eslint.xml'
},
files: {
src: '<%%= jshintFiles %>'
}
},
checkstyle: {
options: {
reporter: 'checkstyle',
reporterOutput: 'build/reports/lint/eslint_checkstyle.xml'
format: 'checkstyle',
'output-file': 'build/reports/lint/eslint_checkstyle.xml'
},
files: {
src: '<%%= jshintFiles %>'
Expand Down

0 comments on commit e84c1af

Please sign in to comment.