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

Commit 972769d

Browse files
committed
Misc: code style fixes
1 parent 222cccf commit 972769d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/specs/rules/disallow-spaces-inside-template-string-placeholders.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ describe('rules/disallow-spaces-inside-template-string-placeholders', function()
4242
expect(checker.checkString('`${1}`')).to.have.no.errors();
4343
});
4444

45-
it('should work with tagged template string', function () {
45+
it('should work with tagged template string', function() {
4646
expect(checker.checkString('tag`${1}`')).to.have.no.errors();
4747
expect(checker.checkString('tag`${1 }`')).to.have.one.validation.error
4848
.from('disallowSpacesInsideTemplateStringPlaceholders');

0 commit comments

Comments
 (0)