resolve all x-spacing and no-spaced-x eslint violations
This commit is contained in:
parent
96931b1748
commit
04eff5fdb0
42 changed files with 184 additions and 178 deletions
|
@ -1,4 +1,4 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, quotes, object-shorthand, camelcase, no-var, comma-dangle, prefer-arrow-callback, object-curly-spacing, quote-props, no-param-reassign, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, quotes, object-shorthand, camelcase, no-var, comma-dangle, prefer-arrow-callback, quote-props, no-param-reassign, max-len */
|
||||
|
||||
(function() {
|
||||
var Api = {
|
||||
|
@ -73,7 +73,7 @@
|
|||
return $.ajax({
|
||||
url: url,
|
||||
type: "POST",
|
||||
data: {'label': data},
|
||||
data: { 'label': data },
|
||||
dataType: "json"
|
||||
}).done(function(label) {
|
||||
return callback(label);
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, wrap-iife, max-len, no-var, spaced-comment, prefer-arrow-callback, consistent-return, one-var, one-var-declaration-per-line, no-unused-vars, no-else-return, prefer-template, quotes, comma-dangle, no-param-reassign, no-void, radix, keyword-spacing, space-before-blocks, brace-style, no-underscore-dangle, no-return-assign, camelcase */
|
||||
/* eslint-disable func-names, space-before-function-paren, wrap-iife, max-len, no-var, prefer-arrow-callback, consistent-return, one-var, one-var-declaration-per-line, no-unused-vars, no-else-return, prefer-template, quotes, comma-dangle, no-param-reassign, no-void, radix, brace-style, no-underscore-dangle, no-return-assign, camelcase */
|
||||
/* global Cookies */
|
||||
|
||||
(function() {
|
||||
this.AwardsHandler = (function() {
|
||||
var FROM_SENTENCE_REGEX = /(?:, and | and |, )/; //For separating lists produced by ruby's Array#toSentence
|
||||
var FROM_SENTENCE_REGEX = /(?:, and | and |, )/; // For separating lists produced by ruby's Array#toSentence
|
||||
function AwardsHandler() {
|
||||
this.aliases = gl.emojiAliases();
|
||||
$(document).off('click', '.js-add-award').on('click', '.js-add-award', (function(_this) {
|
||||
|
@ -211,10 +211,10 @@
|
|||
};
|
||||
|
||||
AwardsHandler.prototype.toSentence = function(list) {
|
||||
if(list.length <= 2){
|
||||
if (list.length <= 2) {
|
||||
return list.join(' and ');
|
||||
}
|
||||
else{
|
||||
else {
|
||||
return list.slice(0, -1).join(', ') + ', and ' + list[list.length - 1];
|
||||
}
|
||||
};
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, camelcase, no-param-reassign, quotes, prefer-template, no-new, comma-dangle, one-var, one-var-declaration-per-line, prefer-arrow-callback, no-else-return, no-unused-vars, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, camelcase, no-param-reassign, quotes, prefer-template, no-new, comma-dangle, one-var, one-var-declaration-per-line, prefer-arrow-callback, no-else-return, no-unused-vars, max-len */
|
||||
/* global ace */
|
||||
/* global BlobGitignoreSelectors */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.EditBlob = (function() {
|
||||
function EditBlob(assets_path, ace_mode) {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* eslint-disable wrap-iife, func-names, strict, no-var, vars-on-top, no-param-reassign, object-shorthand, no-shadow, comma-dangle, prefer-template, consistent-return, no-mixed-operators, no-unused-vars, object-curly-spacing, no-unused-expressions, prefer-arrow-callback, max-len */
|
||||
/* eslint-disable wrap-iife, func-names, strict, no-var, vars-on-top, no-param-reassign, object-shorthand, no-shadow, comma-dangle, prefer-template, consistent-return, no-mixed-operators, no-unused-vars, no-unused-expressions, prefer-arrow-callback, max-len */
|
||||
(function () {
|
||||
'use strict';
|
||||
|
||||
|
@ -83,7 +83,7 @@
|
|||
|
||||
var startTime = new Date().getTime();
|
||||
var duration = options.duration || 1000;
|
||||
simulateEvent(fromEl, 'mousedown', {button: 0});
|
||||
simulateEvent(fromEl, 'mousedown', { button: 0 });
|
||||
options.ontap && options.ontap();
|
||||
window.SIMULATE_DRAG_ACTIVE = 1;
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, no-use-before-define, no-param-reassign, quotes, yoda, no-else-return, consistent-return, comma-dangle, object-shorthand, prefer-template, one-var, one-var-declaration-per-line, no-unused-vars, max-len, vars-on-top */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-use-before-define, no-param-reassign, quotes, yoda, no-else-return, consistent-return, comma-dangle, object-shorthand, prefer-template, one-var, one-var-declaration-per-line, no-unused-vars, max-len, vars-on-top */
|
||||
/* global Breakpoints */
|
||||
/* global Turbolinks */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
var AUTO_SCROLL_OFFSET = 75;
|
||||
var DOWN_BUILD_TRACE = '#down-build-trace';
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* eslint-disable func-names, prefer-arrow-callback, space-before-blocks, space-before-function-paren, comma-spacing, max-len */
|
||||
/* eslint-disable func-names, prefer-arrow-callback, space-before-function-paren */
|
||||
|
||||
$(function(){
|
||||
$('.reveal-variables').off('click').on('click',function(){
|
||||
$(function() {
|
||||
$('.reveal-variables').off('click').on('click', function() {
|
||||
$('.js-build').toggle().niceScroll();
|
||||
$(this).hide();
|
||||
});
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, max-len, one-var, one-var-declaration-per-line, quotes, prefer-template, newline-per-chained-call, comma-dangle, new-cap, no-else-return, consistent-return */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, max-len, one-var, one-var-declaration-per-line, quotes, prefer-template, newline-per-chained-call, comma-dangle, new-cap, no-else-return, consistent-return */
|
||||
/* global FilesCommentButton */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.FilesCommentButton = (function() {
|
||||
var COMMENT_BUTTON_CLASS, COMMENT_BUTTON_TEMPLATE, DEBOUNCE_TIMEOUT_DURATION, EMPTY_CELL_CLASS, LINE_COLUMN_CLASSES, LINE_CONTENT_CLASS, LINE_HOLDER_CLASS, LINE_NUMBER_CLASS, OLD_LINE_CLASS, TEXT_FILE_SELECTOR, UNFOLDABLE_LINE_CLASS;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-template-curly-in-string, comma-dangle, object-shorthand, quotes, dot-notation, no-else-return, one-var, no-var, no-underscore-dangle, one-var-declaration-per-line, no-param-reassign, no-useless-escape, prefer-template, consistent-return, wrap-iife, prefer-arrow-callback, camelcase, no-unused-vars, no-useless-return, vars-on-top, no-multi-spaces, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-template-curly-in-string, comma-dangle, object-shorthand, quotes, dot-notation, no-else-return, one-var, no-var, no-underscore-dangle, one-var-declaration-per-line, no-param-reassign, no-useless-escape, prefer-template, consistent-return, wrap-iife, prefer-arrow-callback, camelcase, no-unused-vars, no-useless-return, vars-on-top, max-len */
|
||||
|
||||
// Creates the variables for setting up GFM auto-completion
|
||||
(function() {
|
||||
|
@ -153,7 +153,7 @@
|
|||
|
||||
return {
|
||||
username: m.username,
|
||||
avatarTag: autoCompleteAvatar.length === 1 ? txtAvatar : imgAvatar,
|
||||
avatarTag: autoCompleteAvatar.length === 1 ? txtAvatar : imgAvatar,
|
||||
title: sanitize(title),
|
||||
search: sanitize(m.username + " " + m.name)
|
||||
};
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, one-var, one-var-declaration-per-line, space-before-blocks, prefer-rest-params, max-len, vars-on-top, wrap-iife, no-unused-vars, quotes, no-shadow, no-cond-assign, prefer-arrow-callback, no-return-assign, no-else-return, camelcase, comma-dangle, no-lonely-if, guard-for-in, no-restricted-syntax, consistent-return, prefer-template, no-param-reassign, no-loop-func, keyword-spacing, no-mixed-operators */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, one-var, one-var-declaration-per-line, prefer-rest-params, max-len, vars-on-top, wrap-iife, no-unused-vars, quotes, no-shadow, no-cond-assign, prefer-arrow-callback, no-return-assign, no-else-return, camelcase, comma-dangle, no-lonely-if, guard-for-in, no-restricted-syntax, consistent-return, prefer-template, no-param-reassign, no-loop-func, no-mixed-operators */
|
||||
/* global fuzzaldrinPlus */
|
||||
/* global Turbolinks */
|
||||
|
||||
(function() {
|
||||
var GitLabDropdown, GitLabDropdownFilter, GitLabDropdownRemote,
|
||||
bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },
|
||||
bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; },
|
||||
indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i += 1) { if (i in this && this[i] === item) return i; } return -1; };
|
||||
|
||||
GitLabDropdownFilter = (function() {
|
||||
|
@ -639,7 +639,7 @@
|
|||
: selectedObject.id;
|
||||
if (isInput) {
|
||||
field = $(this.el);
|
||||
} else if(value) {
|
||||
} else if (value) {
|
||||
field = this.dropdown.parent().find("input[name='" + fieldName + "'][value='" + value.toString().replace(/'/g, '\\\'') + "']");
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, one-var, no-var, space-before-blocks, prefer-rest-params, max-len, no-restricted-syntax, vars-on-top, no-use-before-define, no-param-reassign, new-cap, no-underscore-dangle, wrap-iife, comma-dangle, no-return-assign, prefer-arrow-callback, quotes, prefer-template, newline-per-chained-call, no-else-return */
|
||||
/* eslint-disable func-names, space-before-function-paren, one-var, no-var, prefer-rest-params, max-len, no-restricted-syntax, vars-on-top, no-use-before-define, no-param-reassign, new-cap, no-underscore-dangle, wrap-iife, comma-dangle, no-return-assign, prefer-arrow-callback, quotes, prefer-template, newline-per-chained-call, no-else-return */
|
||||
/* global d3 */
|
||||
/* global ContributorsGraph */
|
||||
|
||||
/*= require d3 */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; },
|
||||
extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
|
||||
hasProp = {}.hasOwnProperty;
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, no-use-before-define, no-useless-escape, no-new, quotes, object-shorthand, no-unused-vars, comma-dangle, radix, no-alert, consistent-return, no-else-return, prefer-template, one-var, one-var-declaration-per-line, curly, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-use-before-define, no-useless-escape, no-new, quotes, object-shorthand, no-unused-vars, comma-dangle, radix, no-alert, consistent-return, no-else-return, prefer-template, one-var, one-var-declaration-per-line, curly, max-len */
|
||||
/* global GitLab */
|
||||
/* global UsersSelect */
|
||||
/* global ZenMode */
|
||||
/* global Autosave */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.IssuableForm = (function() {
|
||||
IssuableForm.prototype.issueMoveConfirmMsg = 'Are you sure you want to move this issue to another project?';
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, one-var, no-underscore-dangle, one-var-declaration-per-line, object-shorthand, no-unused-vars, no-new, comma-dangle, consistent-return, quotes, dot-notation, quote-props, prefer-arrow-callback, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, one-var, no-underscore-dangle, one-var-declaration-per-line, object-shorthand, no-unused-vars, no-new, comma-dangle, consistent-return, quotes, dot-notation, quote-props, prefer-arrow-callback, max-len */
|
||||
/* global Flash */
|
||||
|
||||
/*= require flash */
|
||||
|
@ -6,7 +6,7 @@
|
|||
/*= require task_list */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.Issue = (function() {
|
||||
function Issue() {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, vars-on-top, no-unused-vars, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, vars-on-top, no-unused-vars, max-len */
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.Labels = (function() {
|
||||
function Labels() {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, no-use-before-define, no-underscore-dangle, no-param-reassign, prefer-template, quotes, comma-dangle, prefer-arrow-callback, consistent-return, one-var, one-var-declaration-per-line, spaced-comment, radix, no-else-return, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-use-before-define, no-underscore-dangle, no-param-reassign, prefer-template, quotes, comma-dangle, prefer-arrow-callback, consistent-return, one-var, one-var-declaration-per-line, radix, no-else-return, max-len */
|
||||
|
||||
// LineHighlighter
|
||||
//
|
||||
|
@ -31,7 +31,7 @@
|
|||
// </div>
|
||||
//
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.LineHighlighter = (function() {
|
||||
// CSS class applied to highlighted lines
|
||||
|
@ -119,7 +119,7 @@
|
|||
// Returns an Array
|
||||
LineHighlighter.prototype.hashToRange = function(hash) {
|
||||
var first, last, matches;
|
||||
//?L(\d+)(?:-(\d+))?$/)
|
||||
// ?L(\d+)(?:-(\d+))?$/)
|
||||
matches = hash.match(/^#?L(\d+)(?:-(\d+))?$/);
|
||||
if (matches && matches.length) {
|
||||
first = parseInt(matches[1]);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* eslint-disable comma-dangle, object-shorthand, no-dupe-keys, no-param-reassign, camelcase, prefer-const, no-nested-ternary, no-continue, func-call-spacing, no-spaced-func, max-len */
|
||||
/* eslint-disable comma-dangle, object-shorthand, no-dupe-keys, no-param-reassign, camelcase, prefer-const, no-nested-ternary, no-continue, max-len */
|
||||
/* global Cookies */
|
||||
/* global Vue */
|
||||
|
||||
|
@ -121,7 +121,7 @@
|
|||
} else {
|
||||
const lineType = type || 'context';
|
||||
|
||||
linesObj.left.push (this.getLineForParallelView(line, id, lineType));
|
||||
linesObj.left.push(this.getLineForParallelView(line, id, lineType));
|
||||
linesObj.right.push(this.getLineForParallelView(line, id, lineType, true));
|
||||
}
|
||||
});
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, quotes, no-underscore-dangle, one-var, one-var-declaration-per-line, consistent-return, dot-notation, quote-props, comma-dangle, object-shorthand, max-len, prefer-arrow-callback */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, quotes, no-underscore-dangle, one-var, one-var-declaration-per-line, consistent-return, dot-notation, quote-props, comma-dangle, object-shorthand, max-len, prefer-arrow-callback */
|
||||
/* global MergeRequestTabs */
|
||||
|
||||
/*= require jquery.waitforimages */
|
||||
|
@ -6,7 +6,7 @@
|
|||
/*= require merge_request_tabs */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.MergeRequest = (function() {
|
||||
function MergeRequest(opts) {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* eslint-disable max-len, no-var, func-names, space-before-function-paren, vars-on-top, comma-dangle, no-return-assign, consistent-return, no-param-reassign, one-var, one-var-declaration-per-line, quotes, prefer-template, no-else-return, prefer-arrow-callback, no-unused-vars, no-underscore-dangle, no-shadow, no-mixed-operators, template-curly-spacing, camelcase, default-case, wrap-iife */
|
||||
/* eslint-disable max-len, no-var, func-names, space-before-function-paren, vars-on-top, comma-dangle, no-return-assign, consistent-return, no-param-reassign, one-var, one-var-declaration-per-line, quotes, prefer-template, no-else-return, prefer-arrow-callback, no-unused-vars, no-underscore-dangle, no-shadow, no-mixed-operators, camelcase, default-case, wrap-iife */
|
||||
/* global notify */
|
||||
/* global notifyPermissions */
|
||||
/* global merge_request_widget */
|
||||
|
@ -189,7 +189,7 @@
|
|||
MergeRequestWidget.prototype.renderEnvironments = function(environments) {
|
||||
for (let i = 0; i < environments.length; i += 1) {
|
||||
const environment = environments[i];
|
||||
if ($(`.mr-state-widget #${ environment.id }`).length) return;
|
||||
if ($(`.mr-state-widget #${environment.id}`).length) return;
|
||||
const $template = $(DEPLOYMENT_TEMPLATE);
|
||||
if (!environment.external_url || !environment.external_url_formatted) $('.js-environment-link', $template).remove();
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, max-len */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.MergedButtons = (function() {
|
||||
function MergedButtons() {
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, one-var, vars-on-top, one-var-declaration-per-line, comma-dangle, object-shorthand, no-else-return, prefer-template, quotes, prefer-arrow-callback, no-param-reassign, no-cond-assign, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, one-var, vars-on-top, one-var-declaration-per-line, comma-dangle, object-shorthand, no-else-return, prefer-template, quotes, prefer-arrow-callback, no-param-reassign, no-cond-assign, max-len */
|
||||
/* global Api */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
window.NamespaceSelect = (function() {
|
||||
function NamespaceSelect(opts) {
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, quotes, comma-dangle, one-var, one-var-declaration-per-line, no-mixed-operators, new-cap, no-loop-func, no-floating-decimal, consistent-return, no-unused-vars, prefer-template, prefer-arrow-callback, camelcase, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, quotes, comma-dangle, one-var, one-var-declaration-per-line, no-mixed-operators, new-cap, no-loop-func, no-floating-decimal, consistent-return, no-unused-vars, prefer-template, prefer-arrow-callback, camelcase, max-len */
|
||||
/* global Raphael */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.BranchGraph = (function() {
|
||||
function BranchGraph(element1, options1) {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, one-var, space-before-blocks, prefer-rest-params, max-len, vars-on-top, wrap-iife, consistent-return, comma-dangle, one-var-declaration-per-line, quotes, no-return-assign, prefer-arrow-callback, prefer-template, no-shadow, no-else-return, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, one-var, prefer-rest-params, max-len, vars-on-top, wrap-iife, consistent-return, comma-dangle, one-var-declaration-per-line, quotes, no-return-assign, prefer-arrow-callback, prefer-template, no-shadow, no-else-return, max-len */
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; },
|
||||
indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i += 1) { if (i in this && this[i] === item) return i; } return -1; };
|
||||
|
||||
this.NewBranchForm = (function() {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, no-return-assign, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-return-assign, max-len */
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.NewCommitForm = (function() {
|
||||
function NewCommitForm(form) {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* eslint-disable no-restricted-properties, func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, no-use-before-define, camelcase, no-unused-expressions, quotes, max-len, one-var, one-var-declaration-per-line, default-case, prefer-template, consistent-return, no-alert, no-return-assign, no-param-reassign, prefer-arrow-callback, no-else-return, comma-dangle, no-new, brace-style, no-lonely-if, vars-on-top, no-unused-vars, no-sequences, no-shadow, newline-per-chained-call, no-useless-escape, radix */
|
||||
/* eslint-disable no-restricted-properties, func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-use-before-define, camelcase, no-unused-expressions, quotes, max-len, one-var, one-var-declaration-per-line, default-case, prefer-template, consistent-return, no-alert, no-return-assign, no-param-reassign, prefer-arrow-callback, no-else-return, comma-dangle, no-new, brace-style, no-lonely-if, vars-on-top, no-unused-vars, no-sequences, no-shadow, newline-per-chained-call, no-useless-escape, radix */
|
||||
/* global Flash */
|
||||
/* global GLForm */
|
||||
/* global Autosave */
|
||||
|
@ -13,7 +13,7 @@
|
|||
/*= require task_list */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.Notes = (function() {
|
||||
const MAX_VISIBLE_COMMIT_LIST_COUNT = 3;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, one-var, one-var-declaration-per-line, newline-per-chained-call, comma-dangle, consistent-return, prefer-arrow-callback, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, one-var, one-var-declaration-per-line, newline-per-chained-call, comma-dangle, consistent-return, prefer-arrow-callback, max-len */
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.NotificationsForm = (function() {
|
||||
function NotificationsForm() {
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, quotes, consistent-return, one-var, one-var-declaration-per-line, no-cond-assign, max-len, object-shorthand, no-param-reassign, comma-dangle, prefer-template, no-unused-vars, no-return-assign */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, quotes, consistent-return, one-var, one-var-declaration-per-line, no-cond-assign, max-len, object-shorthand, no-param-reassign, comma-dangle, prefer-template, no-unused-vars, no-return-assign */
|
||||
/* global fuzzaldrinPlus */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.ProjectFindFile = (function() {
|
||||
var highlighter;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, no-unused-vars, one-var, no-underscore-dangle, prefer-template, no-else-return, prefer-arrow-callback, radix, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-unused-vars, one-var, no-underscore-dangle, prefer-template, no-else-return, prefer-arrow-callback, radix, max-len */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.ProjectNew = (function() {
|
||||
function ProjectNew() {
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, no-unused-vars, consistent-return, one-var, one-var-declaration-per-line, quotes, prefer-template, object-shorthand, comma-dangle, no-else-return, no-param-reassign, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-unused-vars, consistent-return, one-var, one-var-declaration-per-line, quotes, prefer-template, object-shorthand, comma-dangle, no-else-return, no-param-reassign, max-len */
|
||||
/* global Cookies */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.Sidebar = (function() {
|
||||
function Sidebar(currentUser) {
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, quotes, prefer-arrow-callback, consistent-return, object-shorthand, no-unused-vars, one-var, one-var-declaration-per-line, no-else-return, comma-dangle, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, quotes, prefer-arrow-callback, consistent-return, object-shorthand, no-unused-vars, one-var, one-var-declaration-per-line, no-else-return, comma-dangle, max-len */
|
||||
/* global Mousetrap */
|
||||
/* global Turbolinks */
|
||||
/* global findFileURL */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.Shortcuts = (function() {
|
||||
function Shortcuts(skipResetBindings) {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* eslint-disable func-names, prefer-arrow-callback, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, one-var, one-var-declaration-per-line, consistent-return, no-param-reassign, max-len */
|
||||
/* eslint-disable func-names, prefer-arrow-callback, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, one-var, one-var-declaration-per-line, consistent-return, no-param-reassign, max-len */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
window.SingleFileDiff = (function() {
|
||||
var COLLAPSED_HTML, ERROR_HTML, LOADING_HTML, WRAPPER;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* eslint-disable prefer-const, comma-dangle, max-len, no-useless-return, object-curly-spacing, no-param-reassign, max-len */
|
||||
/* eslint-disable prefer-const, comma-dangle, max-len, no-useless-return, no-param-reassign, max-len */
|
||||
/* global Api */
|
||||
|
||||
/*= require ../blob/template_selector */
|
||||
|
@ -47,10 +47,10 @@
|
|||
// If the title has not yet been set, focus the title input and
|
||||
// skip focusing the description input by setting `true` as the
|
||||
// `skipFocus` option to `requestFileSuccess`.
|
||||
this.requestFileSuccess(this.currentTemplate, {skipFocus: true});
|
||||
this.requestFileSuccess(this.currentTemplate, { skipFocus: true });
|
||||
this.titleInput.focus();
|
||||
} else {
|
||||
this.requestFileSuccess(this.currentTemplate, {skipFocus: false});
|
||||
this.requestFileSuccess(this.currentTemplate, { skipFocus: false });
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, prefer-arrow-callback, no-else-return, quotes, quote-props, comma-dangle, one-var, one-var-declaration-per-line, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, prefer-arrow-callback, no-else-return, quotes, quote-props, comma-dangle, one-var, one-var-declaration-per-line, max-len */
|
||||
/* global u2f */
|
||||
/* global U2FError */
|
||||
/* global U2FUtil */
|
||||
|
@ -10,7 +10,7 @@
|
|||
(function() {
|
||||
const global = window.gl || (window.gl = {});
|
||||
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
global.U2FAuthenticate = (function() {
|
||||
function U2FAuthenticate(container, form, u2fParams, fallbackButton, fallbackUI) {
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, no-console, quotes, prefer-template, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-console, quotes, prefer-template, max-len */
|
||||
/* global u2f */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.U2FError = (function() {
|
||||
function U2FError(errorCode) {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, no-else-return, quotes, quote-props, comma-dangle, one-var, one-var-declaration-per-line, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-else-return, quotes, quote-props, comma-dangle, one-var, one-var-declaration-per-line, max-len */
|
||||
/* global u2f */
|
||||
/* global U2FError */
|
||||
/* global U2FUtil */
|
||||
|
@ -8,7 +8,7 @@
|
|||
// State Flow #1: setup -> in_progress -> registered -> POST to server
|
||||
// State Flow #2: setup -> in_progress -> error -> setup
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.U2FRegister = (function() {
|
||||
function U2FRegister(container, u2fParams) {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* eslint-disable max-len, space-before-function-paren, no-underscore-dangle, array-bracket-spacing, consistent-return, comma-dangle, no-unused-vars, dot-notation, no-new, no-return-assign, camelcase, no-param-reassign */
|
||||
/* eslint-disable max-len, space-before-function-paren, no-underscore-dangle, consistent-return, comma-dangle, no-unused-vars, dot-notation, no-new, no-return-assign, camelcase, no-param-reassign */
|
||||
|
||||
/*
|
||||
UserTabs
|
||||
|
@ -107,7 +107,7 @@ content on the Users#show page.
|
|||
this.loadActivities(source);
|
||||
}
|
||||
|
||||
const loadableActions = [ 'groups', 'contributed', 'projects', 'snippets' ];
|
||||
const loadableActions = ['groups', 'contributed', 'projects', 'snippets'];
|
||||
if (loadableActions.indexOf(action) > -1) {
|
||||
return this.loadTab(source, action);
|
||||
}
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, camelcase, vars-on-top, keyword-spacing, object-shorthand, comma-dangle, eqeqeq, no-mixed-operators, no-return-assign, newline-per-chained-call, prefer-arrow-callback, consistent-return, one-var, one-var-declaration-per-line, prefer-template, quotes, no-unused-vars, no-else-return, max-len */
|
||||
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, camelcase, vars-on-top, object-shorthand, comma-dangle, eqeqeq, no-mixed-operators, no-return-assign, newline-per-chained-call, prefer-arrow-callback, consistent-return, one-var, one-var-declaration-per-line, prefer-template, quotes, no-unused-vars, no-else-return, max-len */
|
||||
/* global d3 */
|
||||
/* global dateFormat */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.Calendar = (function() {
|
||||
function Calendar(timestamps, calendar_activities_path) {
|
||||
|
@ -28,7 +28,7 @@
|
|||
|
||||
var days = gl.utils.getDayDifference(oneYearAgo, today);
|
||||
|
||||
for(var i = 0; i <= days; i += 1) {
|
||||
for (var i = 0; i <= days; i += 1) {
|
||||
var date = new Date(oneYearAgo);
|
||||
date.setDate(date.getDate() + i);
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, one-var, no-var, space-before-blocks, prefer-rest-params, wrap-iife, quotes, max-len, one-var-declaration-per-line, vars-on-top, prefer-arrow-callback, consistent-return, comma-dangle, object-shorthand, no-shadow, no-unused-vars, no-else-return, no-self-compare, prefer-template, no-unused-expressions, no-lonely-if, yoda, prefer-spread, no-void, camelcase, keyword-spacing, no-param-reassign */
|
||||
/* eslint-disable func-names, space-before-function-paren, one-var, no-var, prefer-rest-params, wrap-iife, quotes, max-len, one-var-declaration-per-line, vars-on-top, prefer-arrow-callback, consistent-return, comma-dangle, object-shorthand, no-shadow, no-unused-vars, no-else-return, no-self-compare, prefer-template, no-unused-expressions, no-lonely-if, yoda, prefer-spread, no-void, camelcase, no-param-reassign */
|
||||
/* global Vue */
|
||||
/* global Issuable */
|
||||
/* global ListUser */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; },
|
||||
slice = [].slice;
|
||||
|
||||
this.UsersSelect = (function() {
|
||||
|
@ -371,7 +371,7 @@
|
|||
};
|
||||
|
||||
UsersSelect.prototype.user = function(user_id, callback) {
|
||||
if(!/^\d+$/.test(user_id)) {
|
||||
if (!/^\d+$/.test(user_id)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* eslint-disable no-unused-expressions, comma-spacing, prefer-const, no-prototype-builtins, no-new, keyword-spacing, no-shadow, max-len */
|
||||
/* eslint-disable no-unused-expressions, prefer-const, no-prototype-builtins, no-new, no-shadow, max-len */
|
||||
|
||||
/*= require js.cookie.js */
|
||||
/*= require jquery.endless-scroll.js */
|
||||
|
@ -19,7 +19,7 @@
|
|||
name: 'merge events',
|
||||
}, {
|
||||
id: 'comments',
|
||||
},{
|
||||
}, {
|
||||
id: 'team',
|
||||
}];
|
||||
|
||||
|
@ -39,14 +39,14 @@
|
|||
new gl.Activities();
|
||||
});
|
||||
|
||||
for(let i = 0; i < filters.length; i += 1) {
|
||||
for (let i = 0; i < filters.length; i += 1) {
|
||||
((i) => {
|
||||
describe(`when selecting ${getEventName(i)}`, () => {
|
||||
beforeEach(() => {
|
||||
$(getSelector(i)).click();
|
||||
});
|
||||
|
||||
for(let x = 0; x < filters.length; x += 1) {
|
||||
for (let x = 0; x < filters.length; x += 1) {
|
||||
((x) => {
|
||||
let shouldHighlight = i === x;
|
||||
let testName = shouldHighlight ? 'should highlight' : 'should not highlight';
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* eslint-disable comma-dangle, prefer-const, no-param-reassign, no-unused-expressions, arrow-spacing, max-len */
|
||||
/* eslint-disable comma-dangle, prefer-const, no-param-reassign, no-unused-expressions, max-len */
|
||||
/* global Turbolinks */
|
||||
|
||||
/*= require jquery */
|
||||
|
@ -140,18 +140,18 @@
|
|||
this.dropdownButtonElement.click();
|
||||
});
|
||||
|
||||
it('should not focus search input while remote task is not complete', ()=> {
|
||||
it('should not focus search input while remote task is not complete', () => {
|
||||
expect($(document.activeElement)).not.toEqual($(SEARCH_INPUT_SELECTOR));
|
||||
remoteCallback();
|
||||
expect($(document.activeElement)).toEqual($(SEARCH_INPUT_SELECTOR));
|
||||
});
|
||||
|
||||
it('should focus search input after remote task is complete', ()=> {
|
||||
it('should focus search input after remote task is complete', () => {
|
||||
remoteCallback();
|
||||
expect($(document.activeElement)).toEqual($(SEARCH_INPUT_SELECTOR));
|
||||
});
|
||||
|
||||
it('should focus on input when opening for the second time', ()=> {
|
||||
it('should focus on input when opening for the second time', () => {
|
||||
remoteCallback();
|
||||
this.dropdownContainerElement.trigger({
|
||||
type: 'keyup',
|
||||
|
@ -164,7 +164,7 @@
|
|||
});
|
||||
|
||||
describe('input focus with array data', () => {
|
||||
it('should focus input when passing array data to drop down', ()=> {
|
||||
it('should focus input when passing array data to drop down', () => {
|
||||
initDropDown.call(this, false, true);
|
||||
this.dropdownButtonElement.click();
|
||||
expect($(document.activeElement)).toEqual($(SEARCH_INPUT_SELECTOR));
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* eslint-disable quotes, object-curly-spacing, jasmine/no-suite-dupes, vars-on-top, no-var, spaced-comment, max-len */
|
||||
/* eslint-disable quotes, jasmine/no-suite-dupes, vars-on-top, no-var, max-len */
|
||||
/* global d3 */
|
||||
/* global ContributorsGraph */
|
||||
/* global ContributorsMasterGraph */
|
||||
|
@ -15,21 +15,21 @@ describe("ContributorsGraph", function () {
|
|||
|
||||
describe("#set_y_domain", function () {
|
||||
it("sets the y_domain", function () {
|
||||
ContributorsGraph.set_y_domain([{commits: 30}]);
|
||||
ContributorsGraph.set_y_domain([{ commits: 30 }]);
|
||||
expect(ContributorsGraph.prototype.y_domain).toEqual([0, 30]);
|
||||
});
|
||||
});
|
||||
|
||||
describe("#init_x_domain", function () {
|
||||
it("sets the initial x_domain", function () {
|
||||
ContributorsGraph.init_x_domain([{date: "2013-01-31"}, {date: "2012-01-31"}]);
|
||||
ContributorsGraph.init_x_domain([{ date: "2013-01-31" }, { date: "2012-01-31" }]);
|
||||
expect(ContributorsGraph.prototype.x_domain).toEqual(["2012-01-31", "2013-01-31"]);
|
||||
});
|
||||
});
|
||||
|
||||
describe("#init_y_domain", function () {
|
||||
it("sets the initial y_domain", function () {
|
||||
ContributorsGraph.init_y_domain([{commits: 30}]);
|
||||
ContributorsGraph.init_y_domain([{ commits: 30 }]);
|
||||
expect(ContributorsGraph.prototype.y_domain).toEqual([0, 30]);
|
||||
});
|
||||
});
|
||||
|
@ -95,24 +95,24 @@ describe("ContributorsGraph", function () {
|
|||
|
||||
describe("ContributorsMasterGraph", function () {
|
||||
// TODO: fix or remove
|
||||
//describe("#process_dates", function () {
|
||||
//it("gets and parses dates", function () {
|
||||
//var graph = new ContributorsMasterGraph();
|
||||
//var data = 'random data here';
|
||||
//spyOn(graph, 'parse_dates');
|
||||
//spyOn(graph, 'get_dates').andReturn("get");
|
||||
//spyOn(ContributorsGraph,'set_dates').andCallThrough();
|
||||
//graph.process_dates(data);
|
||||
//expect(graph.parse_dates).toHaveBeenCalledWith(data);
|
||||
//expect(graph.get_dates).toHaveBeenCalledWith(data);
|
||||
//expect(ContributorsGraph.set_dates).toHaveBeenCalledWith("get");
|
||||
//});
|
||||
//});
|
||||
// describe("#process_dates", function () {
|
||||
// it("gets and parses dates", function () {
|
||||
// var graph = new ContributorsMasterGraph();
|
||||
// var data = 'random data here';
|
||||
// spyOn(graph, 'parse_dates');
|
||||
// spyOn(graph, 'get_dates').andReturn("get");
|
||||
// spyOn(ContributorsGraph,'set_dates').andCallThrough();
|
||||
// graph.process_dates(data);
|
||||
// expect(graph.parse_dates).toHaveBeenCalledWith(data);
|
||||
// expect(graph.get_dates).toHaveBeenCalledWith(data);
|
||||
// expect(ContributorsGraph.set_dates).toHaveBeenCalledWith("get");
|
||||
// });
|
||||
// });
|
||||
|
||||
describe("#get_dates", function () {
|
||||
it("plucks the date field from data collection", function () {
|
||||
var graph = new ContributorsMasterGraph();
|
||||
var data = [{date: "2013-01-01"}, {date: "2012-12-15"}];
|
||||
var data = [{ date: "2013-01-01" }, { date: "2012-12-15" }];
|
||||
expect(graph.get_dates(data)).toEqual(["2013-01-01", "2012-12-15"]);
|
||||
});
|
||||
});
|
||||
|
@ -121,8 +121,8 @@ describe("ContributorsMasterGraph", function () {
|
|||
it("parses the dates", function () {
|
||||
var graph = new ContributorsMasterGraph();
|
||||
var parseDate = d3.time.format("%Y-%m-%d").parse;
|
||||
var data = [{date: "2013-01-01"}, {date: "2012-12-15"}];
|
||||
var correct = [{date: parseDate(data[0].date)}, {date: parseDate(data[1].date)}];
|
||||
var data = [{ date: "2013-01-01" }, { date: "2012-12-15" }];
|
||||
var correct = [{ date: parseDate(data[0].date) }, { date: parseDate(data[1].date) }];
|
||||
graph.parse_dates(data);
|
||||
expect(data).toEqual(correct);
|
||||
});
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* eslint-disable quotes, no-var, camelcase, object-curly-spacing, object-property-newline, comma-dangle, comma-spacing, spaced-comment, max-len, key-spacing, vars-on-top, quote-props, no-multi-spaces */
|
||||
/* eslint-disable quotes, no-var, camelcase, object-property-newline, comma-dangle, max-len, vars-on-top, quote-props */
|
||||
/* global ContributorsStatGraphUtil */
|
||||
|
||||
//= require graphs/stat_graph_contributors_util
|
||||
|
@ -7,24 +7,25 @@ describe("ContributorsStatGraphUtil", function () {
|
|||
describe("#parse_log", function () {
|
||||
it("returns a correctly parsed log", function () {
|
||||
var fake_log = [
|
||||
{author_email: "karlo@email.com", author_name: "Karlo Soriano", date: "2013-05-09", additions: 471},
|
||||
{author_email: "dzaporozhets@email.com", author_name: "Dmitriy Zaporozhets", date: "2013-05-08", additions: 6, deletions: 1},
|
||||
{author_email: "dzaporozhets@email.com", author_name: "Dmitriy Zaporozhets", date: "2013-05-08", additions: 19, deletions: 3},
|
||||
{author_email: "dzaporozhets@email.com", author_name: "Dmitriy Zaporozhets", date: "2013-05-08", additions: 29, deletions: 3}];
|
||||
{ author_email: "karlo@email.com", author_name: "Karlo Soriano", date: "2013-05-09", additions: 471 },
|
||||
{ author_email: "dzaporozhets@email.com", author_name: "Dmitriy Zaporozhets", date: "2013-05-08", additions: 6, deletions: 1 },
|
||||
{ author_email: "dzaporozhets@email.com", author_name: "Dmitriy Zaporozhets", date: "2013-05-08", additions: 19, deletions: 3 },
|
||||
{ author_email: "dzaporozhets@email.com", author_name: "Dmitriy Zaporozhets", date: "2013-05-08", additions: 29, deletions: 3 }
|
||||
];
|
||||
|
||||
var correct_parsed_log = {
|
||||
total: [
|
||||
{date: "2013-05-09", additions: 471, deletions: 0, commits: 1},
|
||||
{date: "2013-05-08", additions: 54, deletions: 7, commits: 3}],
|
||||
by_author:
|
||||
[
|
||||
{ date: "2013-05-09", additions: 471, deletions: 0, commits: 1 },
|
||||
{ date: "2013-05-08", additions: 54, deletions: 7, commits: 3 }
|
||||
],
|
||||
by_author: [
|
||||
{
|
||||
author_name: "Karlo Soriano", author_email: "karlo@email.com",
|
||||
"2013-05-09": {date: "2013-05-09", additions: 471, deletions: 0, commits: 1}
|
||||
"2013-05-09": { date: "2013-05-09", additions: 471, deletions: 0, commits: 1 }
|
||||
},
|
||||
{
|
||||
author_name: "Dmitriy Zaporozhets",author_email: "dzaporozhets@email.com",
|
||||
"2013-05-08": {date: "2013-05-08", additions: 54, deletions: 7, commits: 3}
|
||||
author_name: "Dmitriy Zaporozhets", author_email: "dzaporozhets@email.com",
|
||||
"2013-05-08": { date: "2013-05-08", additions: 54, deletions: 7, commits: 3 }
|
||||
}
|
||||
]
|
||||
};
|
||||
|
@ -33,7 +34,7 @@ describe("ContributorsStatGraphUtil", function () {
|
|||
});
|
||||
|
||||
describe("#store_data", function () {
|
||||
var fake_entry = {author: "Karlo Soriano", date: "2013-05-09", additions: 471};
|
||||
var fake_entry = { author: "Karlo Soriano", date: "2013-05-09", additions: 471 };
|
||||
var fake_total = {};
|
||||
var fake_by_author = {};
|
||||
|
||||
|
@ -57,20 +58,20 @@ describe("ContributorsStatGraphUtil", function () {
|
|||
});
|
||||
|
||||
// TODO: fix or remove
|
||||
//describe("#store_commits", function () {
|
||||
//var fake_total = "fake_total";
|
||||
//var fake_by_author = "fake_by_author";
|
||||
|
||||
//it("calls #add twice with arguments fake_total and fake_by_author respectively", function () {
|
||||
//spyOn(ContributorsStatGraphUtil, 'add');
|
||||
//ContributorsStatGraphUtil.store_commits(fake_total, fake_by_author);
|
||||
//expect(ContributorsStatGraphUtil.add.argsForCall).toEqual([["fake_total", "commits", 1], ["fake_by_author", "commits", 1]]);
|
||||
//});
|
||||
//});
|
||||
// describe("#store_commits", function () {
|
||||
// var fake_total = "fake_total";
|
||||
// var fake_by_author = "fake_by_author";
|
||||
//
|
||||
// it("calls #add twice with arguments fake_total and fake_by_author respectively", function () {
|
||||
// spyOn(ContributorsStatGraphUtil, 'add');
|
||||
// ContributorsStatGraphUtil.store_commits(fake_total, fake_by_author);
|
||||
// expect(ContributorsStatGraphUtil.add.argsForCall).toEqual([["fake_total", "commits", 1], ["fake_by_author", "commits", 1]]);
|
||||
// });
|
||||
// });
|
||||
|
||||
describe("#add", function () {
|
||||
it("adds 1 to current test_field in collection", function () {
|
||||
var fake_collection = {test_field: 10};
|
||||
var fake_collection = { test_field: 10 };
|
||||
ContributorsStatGraphUtil.add(fake_collection, "test_field", 1);
|
||||
expect(fake_collection.test_field).toEqual(11);
|
||||
});
|
||||
|
@ -83,28 +84,28 @@ describe("ContributorsStatGraphUtil", function () {
|
|||
});
|
||||
|
||||
// TODO: fix or remove
|
||||
//describe("#store_additions", function () {
|
||||
//var fake_entry = {additions: 10};
|
||||
//var fake_total= "fake_total";
|
||||
//var fake_by_author = "fake_by_author";
|
||||
//it("calls #add twice with arguments fake_total and fake_by_author respectively", function () {
|
||||
//spyOn(ContributorsStatGraphUtil, 'add');
|
||||
//ContributorsStatGraphUtil.store_additions(fake_entry, fake_total, fake_by_author);
|
||||
//expect(ContributorsStatGraphUtil.add.argsForCall).toEqual([["fake_total", "additions", 10], ["fake_by_author", "additions", 10]]);
|
||||
//});
|
||||
//});
|
||||
// describe("#store_additions", function () {
|
||||
// var fake_entry = {additions: 10};
|
||||
// var fake_total= "fake_total";
|
||||
// var fake_by_author = "fake_by_author";
|
||||
// it("calls #add twice with arguments fake_total and fake_by_author respectively", function () {
|
||||
// spyOn(ContributorsStatGraphUtil, 'add');
|
||||
// ContributorsStatGraphUtil.store_additions(fake_entry, fake_total, fake_by_author);
|
||||
// expect(ContributorsStatGraphUtil.add.argsForCall).toEqual([["fake_total", "additions", 10], ["fake_by_author", "additions", 10]]);
|
||||
// });
|
||||
// });
|
||||
|
||||
// TODO: fix or remove
|
||||
//describe("#store_deletions", function () {
|
||||
//var fake_entry = {deletions: 10};
|
||||
//var fake_total= "fake_total";
|
||||
//var fake_by_author = "fake_by_author";
|
||||
//it("calls #add twice with arguments fake_total and fake_by_author respectively", function () {
|
||||
//spyOn(ContributorsStatGraphUtil, 'add');
|
||||
//ContributorsStatGraphUtil.store_deletions(fake_entry, fake_total, fake_by_author);
|
||||
//expect(ContributorsStatGraphUtil.add.argsForCall).toEqual([["fake_total", "deletions", 10], ["fake_by_author", "deletions", 10]]);
|
||||
//});
|
||||
//});
|
||||
// describe("#store_deletions", function () {
|
||||
// var fake_entry = {deletions: 10};
|
||||
// var fake_total= "fake_total";
|
||||
// var fake_by_author = "fake_by_author";
|
||||
// it("calls #add twice with arguments fake_total and fake_by_author respectively", function () {
|
||||
// spyOn(ContributorsStatGraphUtil, 'add');
|
||||
// ContributorsStatGraphUtil.store_deletions(fake_entry, fake_total, fake_by_author);
|
||||
// expect(ContributorsStatGraphUtil.add.argsForCall).toEqual([["fake_total", "deletions", 10], ["fake_by_author", "deletions", 10]]);
|
||||
// });
|
||||
// });
|
||||
|
||||
describe("#add_date", function () {
|
||||
it("adds a date field to the collection", function () {
|
||||
|
@ -130,32 +131,36 @@ describe("ContributorsStatGraphUtil", function () {
|
|||
it("returns the collection sorted via specified field", function () {
|
||||
var fake_parsed_log = {
|
||||
total: [
|
||||
{date: "2013-05-09", additions: 471, deletions: 0, commits: 1},
|
||||
{date: "2013-05-08", additions: 54, deletions: 7, commits: 3}
|
||||
{ date: "2013-05-09", additions: 471, deletions: 0, commits: 1 },
|
||||
{ date: "2013-05-08", additions: 54, deletions: 7, commits: 3 }
|
||||
],
|
||||
by_author:[
|
||||
by_author: [
|
||||
{
|
||||
author: "Karlo Soriano",
|
||||
"2013-05-09": {date: "2013-05-09", additions: 471, deletions: 0, commits: 1}
|
||||
"2013-05-09": { date: "2013-05-09", additions: 471, deletions: 0, commits: 1 }
|
||||
},
|
||||
{
|
||||
author: "Dmitriy Zaporozhets",
|
||||
"2013-05-08": {date: "2013-05-08", additions: 54, deletions: 7, commits: 3}
|
||||
"2013-05-08": { date: "2013-05-08", additions: 54, deletions: 7, commits: 3 }
|
||||
}
|
||||
]
|
||||
};
|
||||
var correct_total_data = [{date: "2013-05-08", commits: 3},
|
||||
{date: "2013-05-09", commits: 1}];
|
||||
var correct_total_data = [
|
||||
{ date: "2013-05-08", commits: 3 },
|
||||
{ date: "2013-05-09", commits: 1 }
|
||||
];
|
||||
expect(ContributorsStatGraphUtil.get_total_data(fake_parsed_log, "commits")).toEqual(correct_total_data);
|
||||
});
|
||||
});
|
||||
|
||||
describe("#pick_field", function () {
|
||||
it("returns the collection with only the specified field and date", function () {
|
||||
var fake_parsed_log_total = [{date: "2013-05-09", additions: 471, deletions: 0, commits: 1},
|
||||
{date: "2013-05-08", additions: 54, deletions: 7, commits: 3}];
|
||||
var fake_parsed_log_total = [
|
||||
{ date: "2013-05-09", additions: 471, deletions: 0, commits: 1 },
|
||||
{ date: "2013-05-08", additions: 54, deletions: 7, commits: 3 }
|
||||
];
|
||||
ContributorsStatGraphUtil.pick_field(fake_parsed_log_total, "commits");
|
||||
var correct_pick_field_data = [{date: "2013-05-09", commits: 1},{date: "2013-05-08", commits: 3}];
|
||||
var correct_pick_field_data = [{ date: "2013-05-09", commits: 1 }, { date: "2013-05-08", commits: 3 }];
|
||||
expect(ContributorsStatGraphUtil.pick_field(fake_parsed_log_total, "commits")).toEqual(correct_pick_field_data);
|
||||
});
|
||||
});
|
||||
|
@ -164,23 +169,23 @@ describe("ContributorsStatGraphUtil", function () {
|
|||
it("returns the log by author sorted by specified field", function () {
|
||||
var fake_parsed_log = {
|
||||
total: [
|
||||
{date: "2013-05-09", additions: 471, deletions: 0, commits: 1},
|
||||
{date: "2013-05-08", additions: 54, deletions: 7, commits: 3}
|
||||
{ date: "2013-05-09", additions: 471, deletions: 0, commits: 1 },
|
||||
{ date: "2013-05-08", additions: 54, deletions: 7, commits: 3 }
|
||||
],
|
||||
by_author: [
|
||||
{
|
||||
author_name: "Karlo Soriano", author_email: "karlo@email.com",
|
||||
"2013-05-09": {date: "2013-05-09", additions: 471, deletions: 0, commits: 1}
|
||||
"2013-05-09": { date: "2013-05-09", additions: 471, deletions: 0, commits: 1 }
|
||||
},
|
||||
{
|
||||
author_name: "Dmitriy Zaporozhets", author_email: "dzaporozhets@email.com",
|
||||
"2013-05-08": {date: "2013-05-08", additions: 54, deletions: 7, commits: 3}
|
||||
"2013-05-08": { date: "2013-05-08", additions: 54, deletions: 7, commits: 3 }
|
||||
}
|
||||
]
|
||||
};
|
||||
var correct_author_data = [
|
||||
{author_name:"Dmitriy Zaporozhets",author_email:"dzaporozhets@email.com",dates:{"2013-05-08":3},deletions:7,additions:54,"commits":3},
|
||||
{author_name:"Karlo Soriano",author_email:"karlo@email.com",dates:{"2013-05-09":1},deletions:0,additions:471,commits:1}
|
||||
{ author_name: "Dmitriy Zaporozhets", author_email: "dzaporozhets@email.com", dates: { "2013-05-08": 3 }, deletions: 7, additions: 54, "commits": 3 },
|
||||
{ author_name: "Karlo Soriano", author_email: "karlo@email.com", dates: { "2013-05-09": 1 }, deletions: 0, additions: 471, commits: 1 }
|
||||
];
|
||||
expect(ContributorsStatGraphUtil.get_author_data(fake_parsed_log, "commits")).toEqual(correct_author_data);
|
||||
});
|
||||
|
@ -188,10 +193,10 @@ describe("ContributorsStatGraphUtil", function () {
|
|||
|
||||
describe("#parse_log_entry", function () {
|
||||
it("adds the corresponding info from the log entry to the author", function () {
|
||||
var fake_log_entry = { author_name: "Karlo Soriano", author_email: "karlo@email.com",
|
||||
"2013-05-09": {date: "2013-05-09", additions: 471, deletions: 0, commits: 1}
|
||||
var fake_log_entry = { author_name: "Karlo Soriano", author_email: "karlo@email.com",
|
||||
"2013-05-09": { date: "2013-05-09", additions: 471, deletions: 0, commits: 1 }
|
||||
};
|
||||
var correct_parsed_log = {author_name:"Karlo Soriano",author_email:"karlo@email.com",dates:{"2013-05-09":1},deletions:0,additions:471,commits:1};
|
||||
var correct_parsed_log = { author_name: "Karlo Soriano", author_email: "karlo@email.com", dates: { "2013-05-09": 1 }, deletions: 0, additions: 471, commits: 1 };
|
||||
expect(ContributorsStatGraphUtil.parse_log_entry(fake_log_entry, 'commits', null)).toEqual(correct_parsed_log);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* eslint-disable no-new, object-curly-spacing, prefer-const */
|
||||
/* eslint-disable no-new, prefer-const */
|
||||
/* global IssuableContext */
|
||||
/* global LabelsSelect */
|
||||
|
||||
|
@ -30,14 +30,14 @@
|
|||
|
||||
if (req.url === '/root/test/labels.json') {
|
||||
for (let i = 0; i < 10; i += 1) {
|
||||
LABELS_DATA.push({id: i, title: `test ${i}`, color: '#5CB85C'});
|
||||
LABELS_DATA.push({ id: i, title: `test ${i}`, color: '#5CB85C' });
|
||||
}
|
||||
} else if (req.url === '/root/test/issues/2.json') {
|
||||
let tmp = [];
|
||||
for (let i = 0; i < saveLabelCount; i += 1) {
|
||||
tmp.push({id: i, title: `test ${i}`, color: '#5CB85C'});
|
||||
tmp.push({ id: i, title: `test ${i}`, color: '#5CB85C' });
|
||||
}
|
||||
LABELS_DATA = {labels: tmp};
|
||||
LABELS_DATA = { labels: tmp };
|
||||
}
|
||||
|
||||
d.resolve(LABELS_DATA);
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
/* eslint-disable space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, no-unused-expressions, no-return-assign, no-param-reassign, max-len */
|
||||
/* eslint-disable space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-unused-expressions, no-return-assign, no-param-reassign, max-len */
|
||||
|
||||
(function() {
|
||||
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
|
||||
var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
|
||||
|
||||
this.MockU2FDevice = (function() {
|
||||
function MockU2FDevice() {
|
||||
|
|
Loading…
Reference in a new issue