Standard Prettier configuration for Ackama projects. Version 1.3.0 is the current stable release. The config enforces single quotes for JavaScript/TypeScript and has been updated to use single quotes for CSS, Sass, SCSS, Less, and HTML since v1.3.0, preserve whitespace significance in HTML since v1.2.0, and replaced deprecated `jsxBracketSameLine` with `bracketSameLine` in v1.1.0. Key differentiator: opinionated, organization-wide default that can be shared across projects. Peer dependency on Prettier >= 2.0. Released via semantic-release.
npm install prettier-config-ackamaVerified import paths — ran on the pinned version, not inferred.
Install peer dependency and config package, then reference in package.json or extend in a config file.
Update projects or override with `singleQuote: false` in user config.
Explicitly set `htmlWhitespaceSensitivity` in user config if default behavior breaks formatting.
Use `bracketSameLine` instead.
Add `semi: false` in user override if trailing semicolons are not wanted.
Run `npm install --save-dev prettier@>=2.0`
Run `npm install --save-dev prettier-config-ackama`
Use spread operator: `{ ...ackamaConfig, singleQuote: false }` instead of `ackamaConfig.singleQuote = false`