Skip to content
This repository has been archived by the owner on Nov 23, 2024. It is now read-only.

Commit

Permalink
remove quotes from properties in .eslintrc.js files (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Sipple authored and alexlafroscia committed Sep 14, 2016
1 parent f14517c commit ea983a9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = {
},
extends: 'eslint:recommended',
env: {
'browser': true
browser: true
},
rules: {
}
Expand Down
2 changes: 1 addition & 1 deletion blueprints/ember-cli-eslint/files/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = {
},
extends: 'eslint:recommended',
env: {
'browser': true
browser: true
},
rules: {
}
Expand Down
2 changes: 1 addition & 1 deletion blueprints/ember-cli-eslint/files/tests/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
env: {
'embertest': true
embertest: true
}
};
2 changes: 1 addition & 1 deletion tests/dummy/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module.exports = {
env: {
'embertest': true
embertest: true
}
};

0 comments on commit ea983a9

Please sign in to comment.