pawelblaszczyk5/eslint-plugin-svelte

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

eslint-plugin-svelte is the official ESLint plugin for Svelte.
It provides many unique check rules by using the template AST.
You can check on the Online DEMO.

NPM licenseNPM versionNPM downloadsNPM downloadsNPM downloadsNPM downloadsNPM downloadsBuild Status

type-coverageConventional CommitsCode Style: Prettierchangesets

ESLint plugin for Svelte.
It provides many unique check rules using the AST generated by svelte-eslint-parser.

The svelte-eslint-parser and the eslint-plugin-svelte can not be used with the eslint-plugin-svelte3.

To migrate from eslint-plugin-svelte v1, or @ota-meshi/eslint-plugin-svelte, please refer to the migration guide.

See documents.

npm install --save-dev eslint eslint-plugin-svelte svelte

Requirements

  • ESLint v7.0.0 and above
  • Node.js v14.17.x, v16.x and above

Use .eslintrc.* file to configure rules. See also: https://eslint.org/docs/user-guide/configuring.

Example .eslintrc.js:

module.exports = {
  extends: [
    // add more generic rule sets here, such as:
    // 'eslint:recommended',
    "plugin:svelte/recommended",
  ],
  rules: {
    // override/add rules settings here, such as:
    // 'svelte/rule-name': 'error'
  },
}

This plugin provides configs:

  • plugin:svelte/base ... Configuration to enable correct Svelte parsing.
  • plugin:svelte/recommended ... Above, plus rules to prevent errors or unintended behavior.
  • plugin:svelte/prettier ... Turns off rules that may conflict with Prettier (You still need to configure prettier to work with svelte yourself, for example by using prettier-plugin-svelte.).
  • plugin:svelte/all ... All rules. This configuration is not recommended for production use because it changes with every minor and major version of eslint-plugin-svelte. Use it at your own risk.

See the rule list to get the rules that this plugin provides.

::: warning ❗ Attention

The eslint-plugin-svelte can not be used with the eslint-plugin-svelte3. If you are using eslint-plugin-svelte3 you need to remove it.

  "plugins": [
-   "svelte3"
  ]

:::

If you have specified a parser, you need to configure a parser for .svelte.

For example, if you are using the "@babel/eslint-parser", configure it as follows:

module.exports = {
  // ...
  extends: ["plugin:svelte/recommended"],
  // ...
  parser: "@babel/eslint-parser",
  // Add an `overrides` section to add a parser configuration for svelte.
  overrides: [
    {
      files: ["*.svelte"],
      parser: "svelte-eslint-parser",
    },
    // ...
  ],
  // ...
}

For example, if you are using the "@typescript-eslint/parser", and if you want to use TypeScript in <script> of .svelte, you need to add more parserOptions configuration.

module.exports = {
  // ...
  extends: ["plugin:svelte/recommended"],
  // ...
  parser: "@typescript-eslint/parser",
  parserOptions: {
    // ...
    project: "path/to/your/tsconfig.json",
    extraFileExtensions: [".svelte"], // This is a required setting in `@typescript-eslint/parser` v4.24.0.
  },
  overrides: [
    {
      files: ["*.svelte"],
      parser: "svelte-eslint-parser",
      // Parse the `<script>` in `.svelte` as TypeScript by adding the following configuration.
      parserOptions: {
        parser: "@typescript-eslint/parser",
      },
    },
    // ...
  ],
  // ...
}

If you have a mix of TypeScript and JavaScript in your project, use a multiple parser configuration.

module.exports = {
  // ...
  overrides: [
    {
      files: ["*.svelte"],
      parser: "svelte-eslint-parser",
      parserOptions: {
        parser: {
          // Specify a parser for each lang.
          ts: "@typescript-eslint/parser",
          js: "espree",
          typescript: "@typescript-eslint/parser",
        },
      },
    },
    // ...
  ],
  // ...
}

See also https://.com/sveltejs/svelte-eslint-parser#readme.

::: warning ❗ Attention

The TypeScript parser uses a singleton internally and it will only use the options given to it when it was first initialized. If trying to change the options for a different file or override, the parser will simply ignore the new options (which may result in an error). See typescript-eslint/typescript-eslint#6778 for some context.

:::

You can change the behavior of this plugin with some settings.

e.g.

module.exports = {
  // ...
  settings: {
    svelte: {
      ignoreWarnings: [
        "@typescript-eslint/no-unsafe-assignment",
        "@typescript-eslint/no-unsafe-member-access",
      ],
      compileOptions: {
        postcss: {
          configFilePath: "./path/to/my/postcss.config.js",
        },
      },
      kit: {
        files: {
          routes: "src/routes",
        },
      },
    },
  },
  // ...
}

Specifies an array of rules that ignore reports in the template.
For example, set rules on the template that cannot avoid false positives.

Specifies options for Svelte compile. Effects rules that use Svelte compile. The target rules are svelte/valid-compile and svelte/no-unused-svelte-ignore. Note that it has no effect on ESLint's custom parser.

  • postcss ... Specifies options related to PostCSS. You can disable the PostCSS process by specifying false.
    • configFilePath ... Specifies the path of the directory containing the PostCSS configuration.

If you use SvelteKit with not default configuration, you need to set below configurations. The schema is subset of SvelteKit's configuration. Therefore please check SvelteKit docs for more details.

e.g.

module.exports = {
  // ...
  settings: {
    svelte: {
      kit: {
        files: {
          routes: "src/routes",
        },
      },
    },
  },
  // ...
}

If you want to run eslint from the command line, make sure you include the .svelte extension using the --ext option or a glob pattern, because ESLint targets only .js files by default.

Examples:

eslint --ext .js,.svelte src
eslint "src/**/*.{js,svelte}"

Use the dbaeumer.vscode-eslint extension that Microsoft provides officially.

You have to configure the eslint.validate option of the extension to check .svelte files, because the extension targets only *.js or *.jsx files by default.

Example .vscode/settings.json:

{
  "eslint.validate": ["javascript", "javascriptreact", "svelte"]
}

πŸ”§ Indicates that the rule is fixable, and using --fix option on the command line can automatically fix some of the reported problems.
πŸ’‘ Indicates that some problems reported by the rule are manually fixable by editor suggestions.
⭐ Indicates that the rule is included in the plugin:svelte/recommended config.

These rules relate to possible syntax or logic errors in Svelte code:

Rule IDDescription
svelte/infinite-reactive-loopSvelte runtime prevents calling the same reactive statement twice in a microtask. But between different microtask, it doesn't prevent.
svelte/no-dom-manipulatingdisallow DOM manipulating
svelte/no-dupe-else-if-blocksdisallow duplicate conditions in {#if} / {:else if} chains⭐
svelte/no-dupe-on-directivesdisallow duplicate on: directives
svelte/no-dupe-style-propertiesdisallow duplicate style properties⭐
svelte/no-dupe-use-directivesdisallow duplicate use: directives
svelte/no-dynamic-slot-namedisallow dynamic slot nameβ­πŸ”§
svelte/no-export-load-in-svelte-module-in-kit-pagesdisallow exporting load functions in *.svelte module in SvelteKit page components.
svelte/no-not-function-handlerdisallow use of not function in event handler⭐
svelte/no-object-in-text-mustachesdisallow objects in text mustache interpolation⭐
svelte/no-reactive-reassigndisallow reassigning reactive values
svelte/no-shorthand-style-property-overridesdisallow shorthand style properties that override related longhand properties⭐
svelte/no-store-asyncdisallow using async/await inside svelte stores because it causes issues with the auto-unsubscribing features
svelte/no-unknown-style-directive-propertydisallow unknown style:property⭐
svelte/require-store-callbacks-use-set-paramstore callbacks must use set param
svelte/require-store-reactive-accessdisallow to use of the store itself as an operand. Need to use $ prefix or get function.πŸ”§
svelte/valid-compiledisallow warnings when compiling.⭐
svelte/valid-prop-names-in-kit-pagesdisallow props other than data or errors in SvelteKit page components.

These rules relate to security vulnerabilities in Svelte code:

Rule IDDescription
svelte/no-at-html-tagsdisallow use of {@html} to prevent XSS attack⭐
svelte/no-target-blankdisallow target="_blank" attribute without rel="noopener noreferrer"

These rules relate to better ways of doing things to help you avoid problems:

Rule IDDescription
svelte/block-langdisallows the use of languages other than those specified in the configuration for the lang attribute of <script> and <style> blocks.
svelte/button-has-typedisallow usage of button without an explicit type attribute
svelte/no-at-debug-tagsdisallow the use of {@debug}⭐
svelte/no-immutable-reactive-statementsdisallow reactive statements that don't reference reactive values.
svelte/no-reactive-functionsit's not necessary to define functions in reactive statementsπŸ’‘
svelte/no-reactive-literalsdon't assign literal values in reactive statementsπŸ’‘
svelte/no-unused-class-namedisallow the use of a class in the template without a corresponding style
svelte/no-unused-svelte-ignoredisallow unused svelte-ignore comments⭐
svelte/no-useless-mustachesdisallow unnecessary mustache interpolationsπŸ”§
svelte/prefer-destructured-store-propsdestructure values from object stores for better change tracking & fewer redrawsπŸ’‘
svelte/require-each-keyrequire keyed {#each} block
svelte/require-event-diser-typesrequire type parameters for createEventDiser
svelte/require-optimized-style-attributerequire style attributes that can be optimized
svelte/require-stores-initrequire initial value in store
svelte/valid-each-keyenforce keys to use variables defined in the {#each} block

These rules relate to style guidelines, and are therefore quite subjective:

Rule IDDescription
svelte/derived-has-same-inputs-outputsderived store should use same variable names between values and callback
svelte/first-attribute-linebreakenforce the location of first attributeπŸ”§
svelte/html-closing-bracket-spacingrequire or disallow a space before tag's closing bracketsπŸ”§
svelte/html-quotesenforce quotes style of HTML attributesπŸ”§
svelte/html-self-closingenforce self-closing styleπŸ”§
svelte/indentenforce consistent indentationπŸ”§
svelte/max-attributes-per-lineenforce the maximum number of attributes per lineπŸ”§
svelte/mustache-spacingenforce unified spacing in mustacheπŸ”§
svelte/no-extra-reactive-curliesdisallow wrapping single reactive statements in curly bracesπŸ’‘
svelte/no-restricted-html-elementsdisallow specific HTML elements
svelte/no-spaces-around-equal-signs-in-attributedisallow spaces around equal signs in attributeπŸ”§
svelte/prefer-class-directiverequire class directives instead of ternary expressionsπŸ”§
svelte/prefer-style-directiverequire style directives instead of style attributeπŸ”§
svelte/shorthand-attributeenforce use of shorthand syntax in attributeπŸ”§
svelte/shorthand-directiveenforce use of shorthand syntax in directivesπŸ”§
svelte/sort-attributesenforce order of attributesπŸ”§
svelte/spaced-html-commentenforce consistent spacing after the <!-- and before the --> in a HTML commentπŸ”§

These rules extend the rules provided by ESLint itself, or other plugins to work well in Svelte:

Rule IDDescription
svelte/no-inner-declarationsdisallow variable or function declarations in nested blocks⭐
svelte/no-trailing-spacesdisallow trailing whitespace at the end of linesπŸ”§

⚠️These rules are considered experimental and may change or be removed in the future:

Rule IDDescription
svelte/experimental-require-slot-typesrequire slot type declaration using the $$Slots interface
svelte/experimental-require-strict-eventsrequire the strictEvents attribute on <script> tags

These rules relate to this plugin works:

Rule IDDescription
svelte/comment-directivesupport comment-directives in HTML template⭐
svelte/systemsystem rule for working this plugin⭐
  • ⚠️We're going to remove deprecated rules in the next major release. Please migrate to successor/new rules.
  • πŸ˜‡ We don't fix bugs which are in deprecated rules since we don't have enough resources.
Rule IDReplaced by
svelte/@typescript-eslint/no-unnecessary-conditionThis rule is no longer needed when using svelte-eslint-parser>=v0.19.0.

Welcome contributing!

Please use 's Issues/PRs.

See also CONTRIBUTING.md

This plugin uses svelte-eslint-parser for the parser. Check here to find out about AST.

See the LICENSE file for license rights and limitations (MIT).

About

ESLint plugin for Svelte using AST

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 88.1%
  • Svelte 6.4%
  • JavaScript 4.6%
  • Other 0.9%