Skip to content

Commit

Permalink
Enable strict mode
Browse files Browse the repository at this point in the history
...with 'use strict' directives.
  • Loading branch information
motet-a authored and kemitchell committed Jun 16, 2017
1 parent c73dc0e commit 6b1625e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict'

var scan = require('./scan')
var parse = require('./parse')

Expand Down
2 changes: 2 additions & 0 deletions parse.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict'

// The ABNF grammar in the spec is totally ambiguous.
//
// This parser follows the operator precedence defined in the
Expand Down
2 changes: 2 additions & 0 deletions scan.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict'

var licenses = require('spdx-license-ids')
var exceptions = require('spdx-exceptions')

Expand Down
2 changes: 2 additions & 0 deletions test/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict'

/* global it */

var assert = require('assert')
Expand Down

0 comments on commit 6b1625e

Please sign in to comment.