Are you trying to start a war? LOL The configurable options in prettier are there because they are too controversial for there to be one universally accepted standard. It's all personal opinion. Answer from CreativeTechGuyGames on reddit.com
🌐
Reddit
reddit.com › r/reactjs › what is your go to prettierrc configs?
r/reactjs on Reddit: What is your go to prettierrc configs?
March 16, 2022 -

Or am I an old geezer and folks have moved on from prettier?

Whats the best way to get some nice on save features in vs code if not prettier?

If prettier, what are you settings? (single quotes, line width, etc)

Nothing better than writing dog shit and clicking save and seeing it reformat to perfection

🌐
Prettier
prettier.io › docs › configuration
Configuration File · Prettier
Here’s an annotated description of how different properties map to Prettier’s behavior: # Stop the editor from looking for .editorconfig files in the parent directories # root = true [*] # Non-configurable Prettier behaviors charset = utf-8 insert_final_newline = true # Caveat: Prettier won’t trim trailing whitespace inside template strings, but your editor might.
🌐
Fraser Boag
boag.online › notepad › post › full-prettier-prettierrc-config
My full Prettier (.prettierrc) config file - Fraser Boag
This allows different projects to have different configuration, and allows you to check this file into the project's git repo, ensuring all developers are committing code with the same style. But enough waffle - here's the .prettierrc file I've landed on and use in every new project.
🌐
GitHub
github.com › u3u › prettier-config
GitHub - u3u/prettier-config: 🎨 The most perfect Prettier config
{ "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true, "prettier.documentSelectors": ["**/*"], "prettier.enableDebugLogs": true, "prettier.endOfLine": "lf", "prettier.printWidth": 120, "prettier.requireConfig": true, "prettier.semi": false, "prettier.singleQuote": true }
Author   u3u
🌐
DEV Community
dev.to › withtoms › prettier-and-how-to-get-most-out-of-it-2d46
Prettier and how to get most out of it - DEV Community
July 1, 2023 - In conclusion, leveraging the full potential of Prettier involves embracing its opinionated nature and keeping the configuration as simple as possible. By following Prettier's philosophy, developers can benefit from consistent and aesthetically pleasing code formatting. Integrating Prettier with other tools like ESLint enhances code quality and adherence to best practices.
🌐
Prettier
prettier.io › docs › options
Options · Prettier
Setting max_line_length in an .editorconfig file will configure Prettier’s print width, unless overridden.
Find elsewhere
🌐
Michelelarson
michelelarson.com › prettier-config
Prettier Config Generator
I've made a few things for fun: GUMDROPS GumGum React Component Library PRETTIER CONFIG UI to generate a Prettier config HOME COUNTDOWN Chrome extension tells you how long until you can leave work and go home RUBBER DUCK DEBUGGING When your code won't work and you just need someone to talk ...
🌐
GitHub
github.com › bahmutov › prettier-config-example
GitHub - bahmutov/prettier-config-example: Example project with different per-folder prettier config and VSCode formatting on save
Example project with different per-folder prettier config and VSCode formatting on save - bahmutov/prettier-config-example
Starred by 32 users
Forked by 11 users
Languages   JavaScript 89.0% | CSS 5.7% | TypeScript 5.3% | JavaScript 89.0% | CSS 5.7% | TypeScript 5.3%
🌐
GitHub
github.com › macklinu › best-prettier-config
GitHub - macklinu/best-prettier-config: The best prettier config in the world :earth_americas:
# These are all the same npx best-prettier-config --plugin prettier-plugin-astro --plugin prettier-plugin-tailwind npx best-prettier-config --plugin astro --plugin tailwind npx best-prettier-config -p astro -p tailwind
Author   macklinu
🌐
GitHub
github.com › lipis › prettier-setup
GitHub - lipis/prettier-setup: Basic configuration for Prettier, ESLint and Husky.
Basic configuration for Prettier, ESLint and Husky. - lipis/prettier-setup
Starred by 180 users
Forked by 23 users
Languages   JavaScript 84.5% | SCSS 15.5% | JavaScript 84.5% | SCSS 15.5%
🌐
GitHub
github.com › prettier › prettier › issues › 7073
A better Prettier CLI and config file · Issue #7073 · prettier/prettier
November 30, 2019 - Let’s have one config file to rule them all – prettier.json. A prettier.json should be required for Prettier to run – this makes Prettier opt-in. For every file Prettier formats, there must be a prettier.json next to it or up the file tree.
Author   lydell
🌐
Medium
medium.com › @fabianterh › an-opinionated-guide-to-setting-up-prettier-with-eslint-51809b1b3043
An opinionated guide to setting up Prettier with ESLint | by Fabian Terh | Medium
September 2, 2018 - This is the plugin that is responsible for detecting differences between your code’s formatting and Prettier’s rules. You can install it by running npm install prettier eslint-plugin-prettier. Assuming you already have a .eslintrc.* (ESLint configuration file), edit it to add the following lines:
🌐
GitHub
github.com › prettier › eslint-config-prettier
GitHub - prettier/eslint-config-prettier: Turns off all rules that are unnecessary or might conflict with Prettier. · GitHub
Some of the rules that eslint-config-prettier turns off may be deprecated, or even removed from ESLint. This is perfectly fine, but if you really need to omit the deprecated and removed rules, you can do so by setting the ESLINT_CONFIG_PRETTIER_NO_DEPRECATED environment variable to a non-empty value.
Starred by 5.9K users
Forked by 262 users
Languages   JavaScript
🌐
Frontity
community.frontity.org › 👨‍💻 framework development › » framework design
Eslint / Prettier - What presets should we use? - » Framework Design - Frontity Community Forum
February 27, 2019 - This is a good moment to think again about our eslint and prettier configuration so it is as simple as possible. Eslint We were following eslint-airbnb in the past, but I’d like our configuration to be as simple and as standard as possible. In the past, when prettier didn’t exist, eslint ...
🌐
Prettier
prettier.io › docs › install
Install · Prettier
Run Prettier from your editor for the best experience. Use eslint-config-prettier to make Prettier and ESLint play nice together.
🌐
Gleb Bahmutov
glebbahmutov.com › blog › configure-prettier-in-vscode
How to configure Prettier and VSCode | Better world by better software
April 23, 2024 - When setting up Prettier it is important to configure it per-project. Not every project uses the same code style, thus it is important to respect the style of whatever project you are currently working in. The demo repo bahmutov/prettier-config-example has two subfolders, each with its distinct ...
🌐
ANGULARarchitects
angulararchitects.io › home › blog › ng best practices: prettier & eslint
NG Best Practices: Prettier & ESLint - ANGULARarchitects
August 9, 2025 - Download this ESLint config. To ensure that your code is always formatted and linted correctly, integrate Prettier and ESLint into your development workflow: I run Prettier automatically on every save. That works charmingly in Cursor, VS Code and Webstorm (even NeoVIM, I guess). Sometimes I just write my code in one ugly line and then press Cmd + S (yes Mac user, but I do have a Pixel phone – best combo 😜) to format it.