Showing 92 of 413 total issues
Function CurrentlyInked
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
export const CurrentlyInked = () => {
const [data, setData] = useState(null);
useEffect(() => {
fetch("/admins/graphs/currently-inked.json")
.then((res) => res.json())
Function run
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
function run(page = 1) {
loadMacroClusterPage(page).then((json) => {
const pagination = json.meta.pagination;
dispatch({
type: SET_LOADING_PERCENTAGE,
Function run
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
function run(page = 1) {
loadMacroClusterPage(page).then((json) => {
const pagination = json.meta.pagination;
dispatch({
type: SET_LOADING_PERCENTAGE,
Function createMacroClusterAndAssign
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
export const createMacroClusterAndAssign = (
values,
microClusterId,
dispatch,
afterCreate
Function BotSignUps
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
export const BotSignUps = () => {
const [data, setData] = useState(null);
useEffect(() => {
fetch("/admins/graphs/bot-signups.json")
.then((res) => res.json())
Function createMacroClusterAndAssign
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
export const createMacroClusterAndAssign = (
values,
microClusterId,
dispatch,
afterCreate
Function CollectedPens
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
export const CollectedPens = () => {
const [pens, setPens] = useState();
useEffect(() => {
async function getCollectedPens() {
- 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
Method perform
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
def perform(collected_ink_id, macro_cluster_id = nil)
collected_ink = CollectedInk.find(collected_ink_id)
cluster =
MicroCluster.find_or_create_by!(
simplified_brand_name: collected_ink.simplified_brand_name,
- 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 CurrentlyInked
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
export const CurrentlyInked = () => {
const [currentlyInked, setCurrentlyInked] = useState();
useEffect(() => {
async function getData() {
- 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 run
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
function run(page = 1) {
loadMicroClusterPage(page).then((json) => {
const pagination = json.meta.pagination;
dispatch({
type: SET_LOADING_PERCENTAGE,
Function run
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
function run(page = 1) {
loadMicroClusterPage(page).then((json) => {
const pagination = json.meta.pagination;
dispatch({
type: SET_LOADING_PERCENTAGE,
Function PensSummaryWidgetContent
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
const PensSummaryWidgetContent = () => {
const { data } = useContext(WidgetDataContext);
const { count, archived } = data.attributes;
return (
<>
Function tableData
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
tableData() {
let ld = this.state.loggedInUserData;
let ud = this.state.userData;
let additionalData = ld.user_id && ld.user_id != ud.user_id;
if (additionalData) {
Function getMicroClusters
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
export const getMicroClusters = (dispatch) => {
const formatter = new Jsona();
let data = [];
function run(page = 1) {
loadMicroClusterPage(page).then((json) => {
Method pen_data
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
def pen_data
CSV.generate do |csv|
csv << [
"fountain pen name",
"last usage",
Function inkConfig
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
inkConfig() {
return {
...this.defaultConfig("ink_name"),
Cell: ({ value, original: { ink_id } }) => {
return (
Method index
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
def index
respond_to do |format|
format.json do
# FIXME: Adding an includes here breaks the serialization and does not include
# the collected pens anymore. This is due to the way the association is
Method simplify
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
def self.simplify(name, too_short: false)
without_no = name.gsub(/^no\s*\.\s*(\d+)/i, '\1')
return $1 if without_no =~ /^#?(\d+)$/
without_no = without_no.gsub(/^#(\d+)/, '\1') unless too_short
without_initials = remove_initials(without_no)
- 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
Method index
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
def index
respond_to do |format|
format.json do
# FIXME: Adding an includes here breaks the serialization and does not include
# the collected pens anymore. This is due to the way the association is
- 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
Method fetch_videos
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
def fetch_videos
Enumerator
.new do |yielder|
result = client.list_playlist_items("snippet", playlist_id: uploads_id)
loop do
- 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"