FabrizioBrancati/BFKit-Swift

View on GitHub

Showing 147 of 147 total issues

Similar blocks of code found in 5 locations. Consider refactoring.
Open

public func osVersionGreaterThan(_ version: String) -> Bool {
    UIDevice.current.systemVersion.compare(version, options: .numeric) == .orderedDescending
}
Severity: Major
Found in Sources/BFKit/Apple/UIKit/UIDevice+Extensions.swift and 4 other locations - About 30 mins to fix
Sources/BFKit/Apple/UIKit/UIDevice+Extensions.swift on lines 43..45
Sources/BFKit/Apple/UIKit/UIDevice+Extensions.swift on lines 59..61
Sources/BFKit/Apple/UIKit/UIDevice+Extensions.swift on lines 67..69
Sources/BFKit/Apple/UIKit/UIDevice+Extensions.swift on lines 75..77

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 41.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Avoid too many return statements within this function.
Open

                return self
Severity: Major
Found in Sources/BFKit/Apple/UIKit/UIImage+Extensions.swift - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

                    return self
    Severity: Major
    Found in Sources/BFKit/Apple/UIKit/UIImage+Extensions.swift - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

                  return outputImage
      Severity: Major
      Found in Sources/BFKit/Apple/UIKit/UIImage+Extensions.swift - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

                            return self
        Severity: Major
        Found in Sources/BFKit/Apple/UIKit/UIImage+Extensions.swift - About 30 mins to fix

          Function swap has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

              mutating func swap(from fromIndex: Int, to toIndex: Int) {
                  if toIndex != fromIndex {
                      guard let object: Element = safeObject(at: fromIndex) else {
                          return
                      }
          Severity: Minor
          Found in Sources/BFKit/Linux/Foundation/Array+Extensions.swift - About 25 mins to fix

          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 scaleProportionally has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

              func scaleProportionally(toMaximumSize targetSize: CGSize) -> UIImage {
                  let newTargetSize: CGSize = targetSize
                  
                  if size.width > newTargetSize.width || newTargetSize.width == newTargetSize.height, size.width > size.height {
                      let factor: CGFloat = (newTargetSize.width * 100) / size.width
          Severity: Minor
          Found in Sources/BFKit/Apple/UIKit/UIImage+Extensions.swift - About 25 mins to fix

          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 useBiometric has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

              public static func useBiometric(localizedReason: String, fallbackTitle: String? = nil, completion: @escaping (_ result: Result) -> Void) {
                  let context = LAContext()
                  
                  context.localizedFallbackTitle = fallbackTitle
                  
          Severity: Minor
          Found in Sources/BFKit/Apple/BFKit/BFBiometrics.swift - About 25 mins to fix

          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 saveAPNSIdentifier has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

              static func saveAPNSIdentifier(_ uniqueIdentifier: Any, completion: @escaping (_ isValid: Bool, _ needsUpdate: Bool, _ oldUUID: String?, _ newUUID: String) -> Void) {
                  var newUUID: String = ""
                  var oldUUID: String?
                  var isValid = false, needsUpdate = false
                  
          Severity: Minor
          Found in Sources/BFKit/Apple/UIKit/UIDevice+Extensions.swift - About 25 mins to fix

          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

          Type body should span 200 lines or less excluding comments and whitespace: currently spans 215 lines
          Open

          internal class UIImageExtensionTests: XCTestCase {

          All declarations should specify Access Control Level keywords explicitly.
          Open

          let package = Package(
          Severity: Minor
          Found in Package.swift by swiftlint

          File name should match a type or extension declared in the file (if any).
          Open

          //

          File name should match a type or extension declared in the file (if any).
          Open

          //

          Function should have complexity 10 or less: currently complexity equals 12
          Open

              private static func handleErrorOS11(_ error: NSError) -> Result {

          Type body should span 200 lines or less excluding comments and whitespace: currently spans 291 lines
          Open

          internal class StringExtensionTests: XCTestCase {

          Function should have complexity 10 or less: currently complexity equals 16
          Open

              private static func convertColor(string color: String) -> Color {

          Function body should span 40 lines or less excluding comments and whitespace: currently spans 42 lines
          Open

              convenience init(hex: String, alphaFirst: Bool = false) {

          Function body should span 40 lines or less excluding comments and whitespace: currently spans 50 lines
          Open

              func smoothGradient(colors: [UIColor], direction: UIViewGradientDirection, type: UIViewGradientType = .linear) {

          File name should match a type or extension declared in the file (if any).
          Open

          //

          Function should have complexity 10 or less: currently complexity equals 15
          Open

                  func blur(radius blurRadius: CGFloat, saturation: CGFloat = 1.8, tintColor: UIColor? = nil, maskImage: UIImage? = nil) -> UIImage {
          Severity
          Category
          Status
          Source
          Language