Showing 161 of 430 total issues
Function up
has 52 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
exports.up = function up (done) {
// mediaTitle 225
// author 100
// authorUrl 250
// source 250
File component.js
has 252 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
import React, { Component } from 'react'
import { Link } from 'react-router'
import t from 't-component'
import debug from 'debug'
import config from 'lib/config'
Function xssFilter
has 51 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
module.exports = function xssFilter (opts) {
var defaults = {
fontFace: false,
fontSize: true,
fontWidth: true,
Function up
has 51 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
exports.up = function up (done) {
dbReady()
.then(() => Topic.collection.find({}).toArray())
.then(mapPromises(function (topic) {
if (topic.action && Object.keys(topic.action).includes('box')) return Promise.resolve(0)
Function render
has 50 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
render () {
const { topic, user } = this.props
if (user.state.pending) return null
Function Setup
has 50 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function Setup (app) {
/**
* Set `production` settings
*/
Function render
has 49 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
render () {
const { votesTotals, results, voted } = this.props
const noVoted = votesTotals === 0
if (noVoted) {
return (
Function TopicConnectorFactory
has 47 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export default function TopicConnectorFactory (WrappedComponent) {
return class TopicConnector extends Component {
static displayName = `TopicConnector(${getDisplayName(WrappedComponent)})`
static WrappedComponent = WrappedComponent
Function ResultBox
has 47 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function ResultBox (props) {
const votesTotal = props.votesTotal
const votes = props.votes
const resultChartDidMount = props.resultChartDidMount
const options = props.options
Function render
has 47 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
render () {
const { user, topic } = this.props
if (user.state.pending) return null
Function render
has 47 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
render () {
let source = null
if (this.props.source) {
source = (
<div className='source'>
Function CommentFooter
has 46 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export default function CommentFooter (props) {
return (
<footer className='actions'>
<div className='votes'>
<span className='score'>
Function render
has 46 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
render () {
if (config.visibility === 'hidden' && this.props.user.state.rejected) {
browserHistory.push('/signin')
return null
}
Function migrateV1
has 45 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function migrateV1 (topic) {
const data = {}
data.clauses = topic.clauses.map((clause) => ({
id: clause._id,
Function up
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
exports.up = function up (done) {
// firstName 100
// lastName 100
// username 100
// email 200
Function postCsv
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function postCsv (req, res) {
const body = req.body.csv
csv2json(body, function (err, json) {
if (err) {
log('get csv: array to csv error', err)
Function migrateV2
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function migrateV2 (topic) {
const html = topic._doc && topic._doc.summary
const document = getDOM(html)
if (!document) throw Error('Bad topic _doc')
const divs = document.getElementsByTagName('div')
Function create
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
exports.create = function create (opts, attrs) {
const user = opts.user
const forum = opts.forum
attrs.forum = forum._id
Function commentsSyncFactory
has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring. Open
Open
function commentsSyncFactory () {
let items = []
const params = {
topicId: null,
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function removeComment
has 42 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
exports.removeComment = (function () {
function verifyPrivileges (forum, user, comment) {
if (privileges.canDeleteComments(forum, user)) return comment
if (!comment.author.equals(user._id)) {