IBM-Swift/Kitura

View on GitHub
Package.swift

Summary

Maintainability
A
0 mins
Test Coverage

Global Constant should be either lowerCamelCase or UpperCamelCase
Open

let enable_nio = !( ["0","false"].contains(ProcessInfo.processInfo.environment["KITURA_NIO"]) )
Severity: Minor
Found in Package.swift by tailor

constant-naming

Global constants should follow either UpperCamelCase or lowerCamelCase naming conventions. Local constants should follow lowerCamelCase naming conventions.

Preferred

let MaxHeight = 42
let maxHeight = 42

Not Preferred

let max_height = 42

Parentheses content should not end with whitespace
Open

let enable_nio = !( ["0","false"].contains(ProcessInfo.processInfo.environment["KITURA_NIO"]) )
Severity: Minor
Found in Package.swift by tailor

Parentheses content should not start with whitespace
Open

let enable_nio = !( ["0","false"].contains(ProcessInfo.processInfo.environment["KITURA_NIO"]) )
Severity: Minor
Found in Package.swift by tailor

There are no issues that match your filters.

Category
Status