A shareable Prettier configuration specifically tailored for Angular projects. Version 1.0.0 is the current stable release, with no known major updates or release cadence documented. It provides a standardized code formatting setup for Angular codebases, differentiating itself from generic Prettier configs by applying Angular-specific conventions. It requires Prettier ^2.1.1 as a peer dependency. The package is published on npm but has no recent updates.
npm install frontend-tools-prettier-configVerified import paths — ran on the pinned version, not inferred.
Install peer dependency, create a .prettierrc.js that extends the shareable config, and run Prettier to format Angular project files.
Ensure Prettier version is 2.1.1 or within the 2.x range.
module.exports = { ...require('frontend-tools-prettier-config'), semi: false };Migrate to @angular-eslint/schematics or @dci-software-solutions/frontend-tools-prettier-config? (if updated)
npm install --save-dev frontend-tools-prettier-config
Use module.exports = require('frontend-tools-prettier-config'); instead of import.npm install --save-dev prettier@^2.1.1 (ensure peer dep is met)