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

Commit f7ba2ea

Browse files
committed
requireSpaceBeforeDestructuredValues: make lint happy
1 parent a195c2e commit f7ba2ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/rules/require-space-before-destructured-values.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ module.exports.prototype = {
5050
},
5151

5252
check: function(file, errors) {
53-
var checkSpaceMissing = function (propKey) {
53+
var checkSpaceMissing = function(propKey) {
5454
var keyToken = file.getFirstNodeToken(propKey);
5555
var colon = file.findNextToken(keyToken, 'Punctuator', ':');
5656

0 commit comments

Comments
 (0)