fsaar/TicTacToe

View on GitHub
TicTacToe/TicTacToe/CoreData/Model/TTTHighscore+CoreDataClass.swift

Summary

Maintainability
A
0 mins
Test Coverage

Enum case names should be lowerCamelCase
Open

        case decoder_no_entity_description

lower-camel-case

method and var names should follow lowerCamelCase naming convention: first letter of the entire word is lowercase, but subsequent first letters are uppercase.

Method and selector names

Preferred

func someMethod() {
    // method definition goes here
}

Not Preferred

func some-method() {
    // method definition goes here
}

Variable names

Preferred

var someVariable = someValue

Not Preferred

var Some_Var1able = someValue

There are no issues that match your filters.

Category
Status