Skip to content

Commit

Permalink
Added jscs rule exclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Schick committed May 31, 2015
1 parent 0bbaf40 commit 2e10e65
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function dArg(obj) {
describe('ArgumentParser', function() {

describe('ArgumentParser()', function() {
it('Should throw when trying to specify a flag with a bad name', function() {
it('Should throw when trying to specify a flag with a bad name', function() {
assert.throws(
function() {
dArg({
Expand Down Expand Up @@ -794,6 +794,7 @@ describe('ArgumentParser', function() {


// jshint multistr: true
// jscs:disable disallowMultipleLineStrings
var argumentTestString = 'Description: test\n\
Name Type Default Required Description \n\
\n\
Expand All @@ -804,6 +805,7 @@ test-4 1<=number<=5 3 false \n\
test-5 array of string false \n\
help false Show the help ';
// jshint multistr: false
// jscs:enable disallowMultipleLineStrings

describe('#getHelpString()', function() {

Expand Down

0 comments on commit 2e10e65

Please sign in to comment.