JSON Formatter
jsonformatter.org › scss-formatter
Best SCSS Formatter and SCSS Beautifier free and easy to use
SCSS Formatter Online helps to format your SCSS Style Sheets.
Visual Studio Marketplace
marketplace.visualstudio.com › items
SCSS Formatter - Visual Studio Marketplace
Extension for Visual Studio Code - A Visual Studio Code Extension to format SCSS
How does this SCSS formatter tool works?
This online SCSS formatter tools uses Javascript formatting library which makes it easier to format the code. The library works by using regular expressions on the source SCSS code. Regular expression matches the codes and add appropiate indentations, wrap lines and remove extra lines.
products.groupdocs.app
products.groupdocs.app › groupdocs apps › beautifiers & formatters › scss formatter
SCSS Formatter Online - Beautify SCSS code online
What is SCSS Beautifier/Formatter App
SCSS Beautifier/Formatter is an online tool that allows you to effortlessly improve the look of your SCSS code. You'll obtain the beautified or formatted output if you paste any minified or unindented codes.
products.groupdocs.app
products.groupdocs.app › groupdocs apps › beautifiers & formatters › scss formatter
SCSS Formatter Online - Beautify SCSS code online
Is this SCSS formatter tool safe & secure?
Yes, this SCSS formatter tool is safe & secure. We do not save any of your data in server. Neither the data is visible to any 3rd party.
products.groupdocs.app
products.groupdocs.app › groupdocs apps › beautifiers & formatters › scss formatter
SCSS Formatter Online - Beautify SCSS code online
WebUtility
webutility.io › home › scss beautifier / formatter
SCSS Beautifier / Formatter - WebUtility.io
December 31, 2022 - Simply paste your SCSS code into the text box and click the “Beautify” button, and our tool will automatically reformat your code according to a set of customizable rules. You can adjust the formatting options to suit your preferences, and you can even save and load your settings for future use.
npm
npmjs.com › package › sass-formatter
sass-formatter - npm
TypeScript Sass formatter. Latest version: 0.8.0, last published: 4 months ago. Start using sass-formatter in your project by running `npm i sass-formatter`. There are 8 other projects in the npm registry using sass-formatter.
» npm install sass-formatter
Published Aug 29, 2025
Version 0.8.0
Author Syler
GitHub
github.com › sibiraj-s › vscode-scss-formatter
GitHub - sibiraj-s/vscode-scss-formatter: A Visual Studio Code Extension to format SCSS files · GitHub
Starred by 13 users
Forked by 3 users
Languages TypeScript 49.7% | SCSS 30.6% | JavaScript 16.7% | CSS 3.0%
Ubercompute
ubercompute.com › scss-formatter
Scss Formatter - Ubercompute.com
Scss formatter converts minified or ugly looking Scss code to a clean, well organized and human-readable formats.
W3Chars
w3chars.com › developer tools › formatters › scss formatter – reliable sass style enforcer
Online SCSS Formatter - W3Chars
The SCSS Formatter powered by Prettier's Sass-aware parser restructures `.scss` files without changing logic. Nested selectors, mixin calls, `@extend`, and module imports are realigned for clarity in large component libraries. Adjustable line width, tab width, tabs, and quote preferences let you mirror any style guide, while helpful errors surface syntax problems before they reach CI.
GitHub
github.com › rl-king › scss-format
GitHub - rl-king/scss-format: Scss stylesheet formatter
Usage: scss-format [--verbose] [(-p|--path PATH) [-v|--verify] [-o|--overwrite] | --stdin] Format scss files and directories, prints the result to stdout by default, use '-o' to replace the original file. Available options: --verbose Log a bit -p,--path PATH Path or dir to a scss file(s) -v,--verify Test if file is correctly formatted -o,--overwrite Replace the orginal file --stdin Read from stdin -h,--help Show this help text
Author rl-king
Visual Studio Marketplace
marketplace.visualstudio.com › items
Sass Formatter - Visual Studio Marketplace
Extension for Visual Studio Code - Beautify sass, scss and css files.
Text Cleaner
textcleaner.net › home › scss formatter
SCSS Formatter and Beautifier to format SCSS online
July 23, 2023 - SCSS Formatter: Online SCSS formatter to beautify and format SCSS code and file. Enter your minified SCSS in the code editor, then click on the format button to make it pretty, clean, and readable. How to use SCSS Formatter Online Easy steps use SCSS formatter online: Step 1: Paste your SCSS ...
GitHub
github.com › morishitter › scssfmt
GitHub - matype/scssfmt: Standard SCSS code formatter
Standard SCSS code formatter. Contribute to matype/scssfmt development by creating an account on GitHub.
Starred by 57 users
Forked by 4 users
Languages JavaScript 100.0% | JavaScript 100.0%
YouTube
youtube.com › code 2020
VS Code tips — Formatting CSS and SCSS - YouTube
Use the built-in #css and #scss formatters to quickly tidy up your stylesheets.Run the formatters using the 'Format Document' command or with alt+shift+F / c...
Published April 27, 2022 Views 14K
Convert Case
convertcase.net › convert case › scss formatter
SCSS Formatter | Format SCSS Code Online | Convert Case
Free online SCSS formatter and beautifier to instantly clean up and format your SCSS code. Makes messy SCSS code readable with proper indentation and consistent styling.
Syler
sass-formatter.syler.de
Sass Formatter
Loading monaco + all sass-formatter versions.
Top answer 1 of 3
20
Solution:
In order to allow single-line blocks in VSCode using Prettier - Code formatter extension, please take the following steps:
- Enable stylelint integration by adding this in the VSCode Settings (JSON):
"prettier.stylelintIntegration": true - Install stylelint and stylelint-prettier npm modules in your project directory.
npm install stylelint stylelint-prettier --save-dev - Add a .stylelintrc.json file at the root of your project directory with the following code:
{
"plugins": ["stylelint-prettier"],
"rules": {
"block-closing-brace-newline-after": "always-multi-line",
"block-closing-brace-empty-line-before": "never",
"block-closing-brace-space-before": "always",
"block-opening-brace-space-after": "always",
"block-opening-brace-space-before": "always",
"block-closing-brace-newline-before": "always-multi-line",
"block-opening-brace-newline-after": "always-multi-line",
"indentation": 4
}
}
You can add/customize more stylelint rules, see the entire list of rules here.
Took me a while to understand how to configure these options, if you're starting out with stylelint, I highly recommend you read its guidelines first.
2 of 3
-3
I haven't known that vscode have that feature. One simple solution probably by specifying prettier-ignore?
/* prettier-ignore */
.some-class { background: #f00; }
Reference:
- https://prettier.io/docs/en/ignore.html#css