Prettier.swift 1.0.1

Prettier.swift 1.0.1

Maintained by Michael Henry Pantaleonx.



Prettier.swift

Version License Platform

Prettier.io wrapper for swift. An opinionated code formatter.

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

Prettier.swift is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'Prettier.swift'

How to use

JSON

import Prettier_swift

let prettier = Prettier()
let input = "{\"id\":1,\"name\":\"Michael Henry\"}"
let output = prettier.prettify(input, parser: .jsonStringify)!

let expected_output =
"""
{
  "id": 1,
  "name": "Michael Henry"
}

"""
XCTAssertEqual(output, expected_output)

HTML

import Prettier_swift

let prettier = Prettier()
let input = "<html><body><p>hello</p></body></html>"
let output = prettier.prettify(input, parser: .html)!

let expected_output =
"""
<html>
  <body>
    <p>hello</p>
  </body>
</html>

"""

XCTAssertEqual(output, expected_output)

AND MORE!

License

Prettier.swift is available under the MIT license. See the LICENSE file for more info.