Skip to content

Commit 8b14e49

Browse files
committed
JSCS config: Set disallowSpaceAfterObjectKeys, fix two occurences
1 parent 1656cd2 commit 8b14e49

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.jscs.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,5 @@
1818
"disallowMultipleLineBreaks": true,
1919
"disallowKeywordsOnNewLine": [ "else" ],
2020
"requireLineFeedAtFileEnd": true,
21-
22-
"excludeFiles": [ "src/intro.js", "src/outro.js" ]
21+
"disallowSpaceAfterObjectKeys": true
2322
}

ui/jquery.ui.position.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ $.fn.position = function( options ) {
246246
my: options.my,
247247
at: options.at,
248248
within: within,
249-
elem : elem
249+
elem: elem
250250
});
251251
}
252252
});

ui/jquery.ui.tabs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,7 @@ $.widget( "ui.tabs", {
844844
url: anchor.attr( "href" ),
845845
beforeSend: function( jqXHR, settings ) {
846846
return that._trigger( "beforeLoad", event,
847-
$.extend( { jqXHR : jqXHR, ajaxSettings: settings }, eventData ) );
847+
$.extend( { jqXHR: jqXHR, ajaxSettings: settings }, eventData ) );
848848
}
849849
};
850850
},

0 commit comments

Comments
 (0)