JSPM

@fullstax/prettier-config

1.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 20
  • Score
    100M100P100Q94075F
  • License MIT

fullstax Prettier config

Package Exports

  • @fullstax/prettier-config
  • @fullstax/prettier-config/prettierrc.json

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@fullstax/prettier-config) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

prettier-config

Shared Prettier configuration for usage within the fullstax Gmbh & CO. KG.

Install

npm install --save-dev @fullstax/prettier-config

Usage

Please choose ONE of the following options:

package.json

{
  "name": "…",
  "version": "…",
  "prettier": "@fullstax/prettier-config"
}

.prettierrc.js

This option is useful, if you want to overwrite the common config with a project-specific one.

module.exports = {
  ...require("@fullstax/prettier-config"),
  "printWidth": 80,
};