Xcode8 ZStyle Code Formatter: How to write consistent styled code?

Yet again somebody missed to insert a empty line before the end of file, I missed to provide a empty space after dictionary Key [AnyHashable:Any] and you might miss to leave any of these kinds of code: //....... return data } func compute(a:Int,b:Int)->Int{ //....... Which should have been: //....... return data } func compute(a: Int, b: Int) -> Int { //....... So you see where I’m heading with this.

Read More