Skip to content

Commit 7d6628a

Browse files
committed
chore: fix accidentally misconfigured lint setting
1 parent 6d0f586 commit 7d6628a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module.exports = {
66
ecmaVersion: 2017,
77
sourceType: 'module',
88
},
9-
plugins: ['ember', '@typescript-eslint'],
9+
plugins: ['ember', '@typescript-eslint', 'prettier'],
1010
extends: ['eslint:recommended', 'plugin:ember/recommended', 'prettier/@typescript-eslint'],
1111
env: {
1212
browser: true,

tests/dummy/app/router.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ const Router = EmberRouter.extend({
66
rootURL: config.rootURL,
77
});
88

9-
Router.map(function() {});
9+
Router.map(function () {});
1010

1111
export default Router;

0 commit comments

Comments
 (0)