@localazy/prettier-config
v1.2.0
Published
Unified Prettier configuration for Localazy projects
Downloads
278
Readme
📦 @localazy/prettier-config
Unified Prettier configuration for Localazy projects
🚀 Quick Start
Install the package using your preferred package manager:
# Using npm
npm install prettier @localazy/prettier-config --save-dev
# Using yarn
yarn add prettier @localazy/prettier-config --dev
# Using pnpm
pnpm add prettier @localazy/prettier-config --save-dev🔧 Usage
Add prettier directly inside your package.json file:
{
"prettier": "@localazy/prettier-config"
}📄 Extending the Configuration
To customize your Prettier configuration, create or update your .prettierrc.js file. You can extend the default
settings provided by @localazy/prettier-config while overriding specific options as needed.
import localazyConfig from '@localazy/prettier-config';
/** @type {import('prettier').Config} */
const config = {
...localazyConfig,
};
export default config;📚 Documentation
For more details on Prettier configuration, visit the Prettier documentation.
📜 License
This project is licensed under the MIT License.
See LICENSE for details.
