https://github.com/extensionengine/prettier-config
Studion Prettier config
https://github.com/extensionengine/prettier-config
prettier prettier-config
Last synced: 6 months ago
JSON representation
Studion Prettier config
- Host: GitHub
- URL: https://github.com/extensionengine/prettier-config
- Owner: ExtensionEngine
- License: mit
- Created: 2023-10-02T09:03:13.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-02T10:27:31.000Z (about 2 years ago)
- Last Synced: 2025-03-26T18:57:24.081Z (6 months ago)
- Topics: prettier, prettier-config
- Homepage: https://github.com/ExtensionEngine/prettier-config/blob/master/README.md
- Size: 51.8 KB
- Stars: 2
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `@studion/prettier-config`
[](https://packagephobia.now.sh/result?p=@studion/prettier-config)
[](https://npm.im/@studion/prettier-config)
[](https://github.com/ExtensionEngine/prettier-config/blob/master/LICENSE)Studion [Prettier](https://prettier.io) config 💄.
## Installation 💻
- If you are using VSCode, install the following
[extension](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode)- Run the command:
```bash
$ npm i -D prettier @studion/prettier-config
```- Edit `package.json`:
```jsonc
{
// ...
"prettier": "@studion/prettier-config"
}
```- **OR** create `.prettierrc.js` file if you need to override the base config:
```js
const baseConfig = require("@studion/prettier-config");module.export = {
...baseConfig,
trailingComma: "none",
};
```