Skip to content

Commit

Permalink
build: Disable jsonlint until the nomnom bug is fixed (see zaach/json…
Browse files Browse the repository at this point in the history
  • Loading branch information
srackham committed Feb 17, 2018
1 parent 3496c52 commit 02ac718
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions Jakefile.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ let RIMUC_EXE = 'node ' + RIMUC_JS

let DOCS = [
{
src: 'README.md', dst: 'doc/index.html', title: 'Rimu Markup',
src: 'README.md',
dst: 'doc/index.html',
title: 'Rimu Markup',
rimucOptions: ''
},
{
Expand All @@ -42,7 +44,9 @@ let DOCS = [
rimucOptions: '--highlightjs --prepend "{generate-examples}=\'yes\'"'
},
{
src: 'doc/tips.rmu', dst: 'doc/tips.html', title: 'Rimu Tips',
src: 'doc/tips.rmu',
dst: 'doc/tips.html',
title: 'Rimu Tips',
rimucOptions: '--highlightjs --mathjax --prepend "{generate-examples}=\'yes\'"'
},
{
Expand Down Expand Up @@ -134,7 +138,8 @@ task('lint', {async: true}, function () {
let commands = []
.concat(RIMU_SRC.concat([RIMUC_TS, RIMU_TSD]).map(file => 'tslint ' + file))
.concat(TESTS.map(file => 'jshint ' + file))
.concat(['jsonlint --quiet package.json'])
// TODO: Disable jsonlint until the nomnom bug is fixed (see https://github.com/zaach/jsonlint/issues/103).
// .concat(['jsonlint --quiet package.json'])
exec(commands, complete)
})

Expand Down

0 comments on commit 02ac718

Please sign in to comment.