Skip to content

Commit

Permalink
Merge pull request #9064 from kellyselden/use-strict
Browse files Browse the repository at this point in the history
consistently 'use strict'; for our node js files
  • Loading branch information
rwjblue committed Feb 26, 2020
2 parents 839d207 + 2ec95eb commit f144aaa
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions blueprints/app/files/.eslintrc.js
@@ -1,3 +1,5 @@
'use strict';

module.exports = {
root: true,
parser: 'babel-eslint',
Expand Down
2 changes: 2 additions & 0 deletions blueprints/app/files/testem.js
@@ -1,3 +1,5 @@
'use strict';

module.exports = {
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
Expand Down
2 changes: 2 additions & 0 deletions tests/fixtures/addon/.eslintrc.js
@@ -1,3 +1,5 @@
'use strict';

module.exports = {
root: true,
parser: 'babel-eslint',
Expand Down
2 changes: 2 additions & 0 deletions tests/fixtures/app/.eslintrc.js
@@ -1,3 +1,5 @@
'use strict';

module.exports = {
root: true,
parser: 'babel-eslint',
Expand Down

0 comments on commit f144aaa

Please sign in to comment.