{"id":15628056,"url":"https://github.com/sibiraj-s/vscode-scss-formatter","last_synced_at":"2025-04-28T19:48:39.342Z","repository":{"id":40618993,"uuid":"158720217","full_name":"sibiraj-s/vscode-scss-formatter","owner":"sibiraj-s","description":"A Visual Studio Code Extension to format SCSS files","archived":false,"fork":false,"pushed_at":"2025-01-28T10:32:53.000Z","size":3412,"stargazers_count":12,"open_issues_count":1,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-30T12:04:44.725Z","etag":null,"topics":["prettier","scss-beautifier","scss-formatter","vscode-extension"],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=sibiraj-s.vscode-scss-formatter","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sibiraj-s.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["sibiraj-s"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2018-11-22T15:41:19.000Z","updated_at":"2025-02-03T09:43:40.000Z","dependencies_parsed_at":"2023-12-31T15:20:51.130Z","dependency_job_id":"9cfe2305-9259-4a64-a990-c434b362585f","html_url":"https://github.com/sibiraj-s/vscode-scss-formatter","commit_stats":null,"previous_names":[],"tags_count":48,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sibiraj-s%2Fvscode-scss-formatter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sibiraj-s%2Fvscode-scss-formatter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sibiraj-s%2Fvscode-scss-formatter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sibiraj-s%2Fvscode-scss-formatter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sibiraj-s","download_url":"https://codeload.github.com/sibiraj-s/vscode-scss-formatter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251380792,"owners_count":21580337,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["prettier","scss-beautifier","scss-formatter","vscode-extension"],"created_at":"2024-10-03T10:20:41.688Z","updated_at":"2025-04-28T19:48:39.323Z","avatar_url":"https://github.com/sibiraj-s.png","language":"TypeScript","funding_links":["https://github.com/sponsors/sibiraj-s"],"categories":[],"sub_categories":[],"readme":"# VS Code SCSS Formatter\n\n[![Tests](https://github.com/sibiraj-s/vscode-scss-formatter/workflows/Tests/badge.svg)](https://github.com/sibiraj-s/vscode-scss-formatter/actions)\n[![Version](https://badgen.net/vs-marketplace/v/sibiraj-s.vscode-scss-formatter)](https://marketplace.visualstudio.com/items?itemName=sibiraj-s.vscode-scss-formatter)\n[![Installs](https://badgen.net/vs-marketplace/i/sibiraj-s.vscode-scss-formatter)](https://marketplace.visualstudio.com/items?itemName=sibiraj-s.vscode-scss-formatter)\n[![Downloads](https://badgen.net/vs-marketplace/d/sibiraj-s.vscode-scss-formatter)](https://marketplace.visualstudio.com/items?itemName=sibiraj-s.vscode-scss-formatter)\n[![Ratings](https://badgen.net/vs-marketplace/rating/sibiraj-s.vscode-scss-formatter)](https://marketplace.visualstudio.com/items?itemName=sibiraj-s.vscode-scss-formatter\u0026ssr=false#review-details)\n\nSCSS Formatter is an extension for Visual Studio Code to format [SCSS](https://sass-lang.com/).\n\nSCSS Formatter uses [Prettier] under the hood to format files. Though Prettier supports formatting various file types. This extension focuses only on `SCSS`. Additionally it supports `CSS`.\n\nCheckout [prettier-vscode] for an extended language support\n\nAny issues related to formatting, open an issue [here](https://github.com/prettier/prettier/issues)\n\n## Installation\n\nRefer to [Visual Studio MarketPlace](https://marketplace.visualstudio.com/items?itemName=sibiraj-s.vscode-scss-formatter) to install or download the extension\n\nTo install via [command line](https://code.visualstudio.com/docs/editor/command-line), you should have installed `code` command in `PATH`\n\n```bash\ncode --install-extension sibiraj-s.vscode-scss-formatter\n```\n\n## Usage\n\nFiles can be formatted by the **Format Document** option available in the **context menu**, by using the associated **Keyboard Shortcut** or running the **Format Document** command from the **command pallete**\n\nDefault keyboard shortcuts for **Format Document** command:\n\n- MacOS: **⇧⌥F** or **Shift+Option+F**\n- Linux: **Ctrl+Shift+I**\n- Windows: **Shift+Alt+F**\n\n### Formatter Demo\n\n![SCSS Formatter Demo](assets/scss-format.gif)\n\n### Extension Settings\n\nThis extension contributes the following settings:\n\n- `scssFormatter.printWidth`: Line length that the formatter will wrap on.\n- `scssFormatter.singleQuote`: Use single quotes instead of double quotes.\n- `scssFormatter.trailingComma`: Print trailing commas wherever possible when multi-line.\n\n### Known Issues\n\n- `formatOnPaste` is not supported as [Prettier] does not support formatting a selection or range of text for css/scss.\n\n[prettier]: https://github.com/prettier/prettier\n[prettier-vscode]: https://github.com/prettier/prettier-vscode\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsibiraj-s%2Fvscode-scss-formatter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsibiraj-s%2Fvscode-scss-formatter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsibiraj-s%2Fvscode-scss-formatter/lists"}