@berun/fluent-prettier

Use a chaining API to generate and simplify the modification of prettier configurations.

Usage no npm install needed!

<script type="module">
  import berunFluentPrettier from 'https://cdn.skypack.dev/@berun/fluent-prettier';
</script>

README

@berun/fluent-prettier

Use a chaining API to generate and simplify the modification of prettier configurations.

_Note: This is is part of the broader @berun/fluent suite of configurations, but may be used standalone.

Example

export default function(berun: Berun, options) {
  berun.prettier
    .semi(false)
    .bracketSpacing(true)
    .rangeStart(0)
    .insertPragma(true)
    .requirePragma(false)
    .arrowParens('always')
    .end()
}

results in `--no-semi --range-start 0 --insert-pragma --allow-parens 'always'`