Showing 197 of 206 total issues
File bootstrap-datepicker.js
has 1769 lines of code (exceeds 250 allowed). Consider refactoring. Open
/* ========================================================= * bootstrap-datepicker.js * Repo: https://github.com/uxsolutions/bootstrap-datepicker/ * Demo: https://eternicode.github.io/bootstrap-datepicker/ * Docs: https://bootstrap-datepicker.readthedocs.org/
- Create a ticketCreate a ticket
File typeahead.jquery.js
has 1684 lines of code (exceeds 250 allowed). Consider refactoring. Open
/*! * typeahead.js 1.3.1 * https://github.com/corejavascript/typeahead.js * Copyright 2013-2020 Twitter, Inc. and other contributors; Licensed MIT */
- Create a ticketCreate a ticket
Function Typeahead
has 292 lines of code (exceeds 25 allowed). Consider refactoring. Open
var Typeahead = function() { "use strict"; function Typeahead(o, www) { var onFocused, onBlurred, onEnterKeyed, onTabKeyed, onEscKeyed, onUpKeyed, onDownKeyed, onLeftKeyed, onRightKeyed, onQueryChanged, onWhitespaceChanged; o = o || {};
- Create a ticketCreate a ticket
Function Input
has 229 lines of code (exceeds 25 allowed). Consider refactoring. Open
var Input = function() { "use strict"; var specialKeyCodeMap; specialKeyCodeMap = { 9: "tab",
- Create a ticketCreate a ticket
Function Dataset
has 211 lines of code (exceeds 25 allowed). Consider refactoring. Open
var Dataset = function() { "use strict"; var keys, nameGenerator; keys = { dataset: "tt-selectable-dataset",
- Create a ticketCreate a ticket
Function fill
has 151 lines of code (exceeds 25 allowed). Consider refactoring. Open
fill: function(){ var d = new Date(this.viewDate), year = d.getUTCFullYear(), month = d.getUTCMonth(), startYear = this.o.startDate !== -Infinity ? this.o.startDate.getUTCFullYear() : -Infinity,
- Create a ticketCreate a ticket
Method 'keydown' has a complexity of 43. Open
keydown: function(e){
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
Function Menu
has 144 lines of code (exceeds 25 allowed). Consider refactoring. Open
var Menu = function() { "use strict"; function Menu(o, www) { var that = this; o = o || {};
- Create a ticketCreate a ticket
Function _
has 140 lines of code (exceeds 25 allowed). Consider refactoring. Open
var _ = function() { "use strict"; return { isMsie: function() { return /(msie|trident)/i.test(navigator.userAgent) ? navigator.userAgent.match(/(msie |rv:)(\d+(.\d+)?)/i)[2] : false;
- Create a ticketCreate a ticket
Method 'fill' has a complexity of 39. Open
fill: function(){
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
Class Event
has 40 methods (exceeds 20 allowed). Consider refactoring. Open
class Event < ApplicationRecord has_many :event_instances belongs_to :project, optional: true belongs_to :creator, class_name: 'User', optional: true has_and_belongs_to_many :slack_channels
- Create a ticketCreate a ticket
Method 'fill' has too many statements (58). Maximum allowed is 30. Open
fill: function(){
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
Method '_process_options' has a complexity of 31. Open
_process_options: function(opts){
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
Function parseDate
has 114 lines of code (exceeds 25 allowed). Consider refactoring. Open
parseDate: function(date, format, language, assumeNearby){ if (!date) return undefined; if (date instanceof Date) return date;
- Create a ticketCreate a ticket
Method '_process_options' has too many statements (48). Maximum allowed is 30. Open
_process_options: function(opts){
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
Function keydown
has 94 lines of code (exceeds 25 allowed). Consider refactoring. Open
keydown: function(e){ if (!this.picker.is(':visible')){ if (e.keyCode === 40 || e.keyCode === 27) { // allow down to re-show picker this.show(); e.stopPropagation();
- Create a ticketCreate a ticket
Function _process_options
has 93 lines of code (exceeds 25 allowed). Consider refactoring. Open
_process_options: function(opts){ // Store raw options for reference this._o = $.extend({}, this._o, opts); // Processed options var o = this.o = $.extend({}, this._o);
- Create a ticketCreate a ticket
Function WWW
has 92 lines of code (exceeds 25 allowed). Consider refactoring. Open
var WWW = function() { "use strict"; var defaultClassNames = { wrapper: "twitter-typeahead", input: "tt-input",
- Create a ticketCreate a ticket
Function EventEmitter
has 87 lines of code (exceeds 25 allowed). Consider refactoring. Open
var EventEmitter = function() { "use strict"; var splitter = /\s+/, nextTick = getNextTick(); return { onSync: onSync,
- Create a ticketCreate a ticket
Function highlight
has 85 lines of code (exceeds 25 allowed). Consider refactoring. Open
var highlight = function(doc) { "use strict"; var defaults = { node: null, pattern: null,
- Create a ticketCreate a ticket