Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
prettier-plugin-svelte
Advanced tools
The prettier-plugin-svelte npm package is a plugin for Prettier that adds support for formatting Svelte files. It ensures that your Svelte code is consistently styled according to Prettier's rules, making it easier to maintain and read.
Format Svelte Files
This feature allows you to format Svelte files using Prettier. By including the plugin in your Prettier configuration, you can ensure that your Svelte code is consistently styled.
/* .prettierrc */
{
"plugins": ["prettier-plugin-svelte"]
}
/* Example Svelte file before formatting */
<script>
let count = 0;
function increment() {
count += 1;
}
</script>
<style>
h1 {
color: red;
}
</style>
<h1 on:click={increment}>Count: {count}</h1>
/* Example Svelte file after formatting */
<script>
let count = 0;
function increment() {
count += 1;
}
</script>
<style>
h1 {
color: red;
}
</style>
<h1 on:click={increment}>Count: {count}</h1>
Integration with Prettier CLI
You can use the Prettier CLI to format all Svelte files in your project. This command will recursively find and format all .svelte files in the src directory.
/* Command to format Svelte files using Prettier CLI */
npx prettier --write "src/**/*.svelte"
Support for Svelte-specific Syntax
The plugin supports Svelte-specific syntax such as reactive statements, bindings, and event handlers, ensuring that these are also formatted correctly.
/* Example Svelte file with Svelte-specific syntax */
<script>
export let name = 'world';
</script>
<style>
p {
font-size: 1.5em;
}
</style>
<p>Hello {name}!</p>
eslint-plugin-svelte3 is an ESLint plugin that provides linting for Svelte files. While it focuses on linting rather than formatting, it can be used alongside prettier-plugin-svelte to ensure both code quality and consistent styling.
svelte-preprocess is a preprocessor for Svelte that allows you to use various languages like TypeScript, SCSS, and PostCSS in your Svelte components. While it doesn't handle formatting, it can be used in conjunction with prettier-plugin-svelte to preprocess and format your Svelte code.
svelte-check is a command-line tool that provides type-checking and linting for Svelte projects. It complements prettier-plugin-svelte by ensuring that your Svelte code is not only well-formatted but also free of type errors and common issues.
Format your Svelte components using Prettier.
{}
, event bindings on:click=""
, and moreThis plugin is bundled in the Svelte for VS Code extension. If you only format through the editor, you therefore don't need to do anything in addition.
The extension lets you define options through extension-specific configuration. These settings are ignored however if there's any configuration file (.prettierrc
for example) present.
Installing the plugin as a package allows:
prettier-plugin-svelte@3
only works with prettier@3
prettier-plugin-svelte@2
only works with prettier@2
Install Prettier and the plugin as a dev dependency:
npm i --save-dev prettier-plugin-svelte prettier
Then create a .prettierrc
configuration file:
// .prettierrc
{
// ..
"plugins": ["prettier-plugin-svelte"],
"pluginSearchDirs": ["."], // should be removed in v3
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
}
If you want to customize some formatting behavior, see section Options.
Format your code using the Prettier CLI.
npx prettier --write . # v3
npx prettier --write --plugin prettier-plugin-svelte . # v2
As part of your scripts in package.json
:
// package.json
{
// ..
"scripts": {
"format": "prettier --write .", // v3
"format": "prettier --write --plugin prettier-plugin-svelte ." // v2
}
}
If you want to customize some formatting behavior, see section Options.
Configurations are optional
Make a .prettierrc
file in your project directory and add your preferred options to configure Prettier. When using Prettier through the CLI, you can also pass options through CLI flags, but a .prettierrc
file is recommended.
Sort order for svelte:options
, scripts, markup, and styles.
Format: join the keywords options
, scripts
, markup
, styles
with a -
in the order you want; or none
if you don't want Prettier to reorder anything.
Default | CLI Override | API Override |
---|---|---|
options-scripts-markup-styles | --svelte-sort-order <string> | svelteSortOrder: <string> |
The
options
order option only exists since version 2. If you use version 1 ofprettier-plugin-svelte
, omit that option (so for example only writescripts-markup-styles
).
More strict HTML syntax: Quotes in attributes and no self-closing DOM elements (except void elements).
In version 2 this overruled
svelteAllowShorthand
, which is no longer the case.
In Svelte 5, attributes are never quoted, because this will mean "stringify this attribute value" in a future Svelte version
Example:
<!-- svelteStrictMode: true (Svelte 3 and 4) -->
<div foo="{bar}"></div>
<!-- svelteStrictMode: true (Svelte 5) -->
<div foo={bar}></div>
<!-- svelteStrictMode: false -->
<div foo={bar} />
Default | CLI Override | API Override |
---|---|---|
false | --svelte-strict-mode <bool> | svelteStrictMode: <bool> |
Option to enable/disable component attribute shorthand if attribute name and expression are same.
Example:
<!-- allowShorthand: true -->
<input type="text" {value} />
<!-- allowShorthand: false -->
<input type="text" value={value} />
Default | CLI Override | API Override |
---|---|---|
true | --svelte-allow-shorthand <bool> | svelteAllowShorthand: <bool> |
Deprecated since 2.5.0. Use Prettier 2.4.0 and bracketSameLine instead.
Put the >
of a multiline element on a new line. Roughly the Svelte equivalent of the jsxBracketSameLine rule. Setting this to false
will have no effect for whitespace-sensitive tags (inline elements) when there's no whitespace between the >
of the start tag and the inner content, or when there's no whitespace after the >
of the end tag. You can read more about HTML whitespace sensitivity here. You can adjust whitespace sensitivity through this setting.
Example:
<!-- before formatting -->
<span><div>foo</div><span>bar</span></span>
<div pretend break>content</div>
<!-- after formatting, svelteBracketNewLine true -->
<span
><div>foo</div>
<span>bar</span></span
>
<div
pretend
break
>
content
</div>
<!-- after formatting, svelteBracketNewLine false -->
<span
><div>foo</div>
<span>bar</span></span>
<div
pretend
break>
content
</div>
Default | CLI Override | API Override |
---|---|---|
true | --svelte-bracket-new-line <bool> | svelteBracketNewLine: <bool> |
Whether or not to indent the code inside <script>
and <style>
tags in Svelte files. This saves an indentation level, but might break code folding in your editor.
Default | CLI Override | API Override |
---|---|---|
true | --svelte-indent-script-and-style <bool> | svelteIndentScriptAndStyle: <bool> |
.prettierrc
example{
"svelteSortOrder": "options-styles-scripts-markup",
"svelteStrictMode": true,
"svelteBracketNewLine": false,
"svelteAllowShorthand": false,
"svelteIndentScriptAndStyle": false
}
// .prettierrc
{
// ..
"plugins": [
"prettier-plugin-svelte",
"prettier-plugin-tailwindcss" // MUST come last
]
}
Since we are using configuration overrides to handle svelte files, you might also have to configure the prettier.documentselectors in your VS Code settings.json
, to tell Prettier extension to handle svelte files, like this:
// settings.json
{
// ..
"prettier.documentSelectors": ["**/*.svelte"]
}
Usage in the browser is semi-supported. You can import the plugin from prettier-plugin-svelte/browser
to get a version that depends on prettier/standalone
and therefore doesn't use any node APIs. What isn't supported in a good way yet is using this without a build step - you still need a bundler like Vite to build everything together as one self-contained package in advance.
# package.json
- "format": "prettier --plugin-search-dir . --write ."
+ "format": "prettier --write ."
# package.json
- "prettier": "^2.8.8",
+ "prettier": "^3.1.0",
- "prettier-plugin-svelte": "^2.10.1",
+ "prettier-plugin-svelte": "^3.1.0",
# .prettierrc
- "pluginSearchDirs": ["."],
+ "plugins": ["prettier-plugin-svelte"]
Version 3 contains the following breaking changes:
<div />
or <Component />
that stays as is, and so does <div></div>
/<Component></Component>
. If svelteStrictMode
is turned on, it will still only allow <div></div>
notation for elements (but it will leave your components alone)svelteAllowShorthand
now takes precedence over svelteStrictMode
, which no longer has any effect on that behavior. Set svelteAllowShorthand
to false
to get back the v2 behaviorsvelteSortOrder
options were removed, see the the options section above for which values are valid for that optionsVersion 3 of this plugin only works with Prettier version 3. Prettier version 3 contains some changes to how it loads plugins which may require you to adjust your configuration file:
"plugins": ["prettier-plugin-svelte"]
to your config if you haven't already. Also remove the deprecated option pluginSearchDirs
.require.resolve("prettier-plugin-svelte")
in your .prettierrc.cjs
to tell Prettier where to find the plugin, you may need to remove that and just write "prettier-plugin-svelte"
instead>
or <
) hugging the inner tag or text?If you are wondering why this code
<span><span>assume very long text</span></span>
becomes this
<span
><span>assume very long text</span
></span
>
it's because of whitespace sensitivity. For inline elements (span
, a
, etc) it makes a difference when rendered if there's a space (or newline) between them. Since we don't know if your slot inside your Svelte component is surrounded by inline elements, Svelte components are treated as such, too. You can adjust this whitespace sensitivity through this setting. You can read more about HTML whitespace sensitivity here.
pnpm
You may need to use a .prettierrc.cjs
file instead to point Prettier to the exact location of the plugin using require.resolve
:
module.exports = {
pluginSearchDirs: false,
plugins: [require('prettier-plugin-svelte')],
overrides: [{ files: '*.svelte', options: { parser: 'svelte' } }],
};
FAQs
Svelte plugin for prettier
The npm package prettier-plugin-svelte receives a total of 341,251 weekly downloads. As such, prettier-plugin-svelte popularity was classified as popular.
We found that prettier-plugin-svelte demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.