You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat!: change the plugin to an ESM-only package (#932)
This PR changes the plugin to an ESM-only package.
~~However, it is not yet a fully ESM-only package, as we have not yet
made the parser ESM.~~
Close#808
-`eslintPluginSvelte.configs['flat/base']` ... Configuration to enable correct Svelte parsing.
95
-
-`eslintPluginSvelte.configs['flat/recommended']` ... Above, plus rules to prevent errors or unintended behavior.
96
-
-`eslintPluginSvelte.configs['flat/prettier']` ... Turns off rules that may conflict with [Prettier](https://prettier.io/) (You still need to configure prettier to work with svelte yourself, for example by using [prettier-plugin-svelte](https://github.com/sveltejs/prettier-plugin-svelte).).
97
-
-`eslintPluginSvelte.configs['flat/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.
98
+
-`eslintPluginSvelte.configs.base` ... Configuration to enable correct Svelte parsing.
99
+
-`eslintPluginSvelte.configs.recommended` ... Above, plus rules to prevent errors or unintended behavior.
100
+
-`eslintPluginSvelte.configs.prettier` ... Turns off rules that may conflict with [Prettier](https://prettier.io/) (You still need to configure prettier to work with svelte yourself, for example by using [prettier-plugin-svelte](https://github.com/sveltejs/prettier-plugin-svelte).).
101
+
-`eslintPluginSvelte.configs.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.
98
102
99
103
See [the rule list](https://sveltejs.github.io/eslint-plugin-svelte/rules/) to get the `rules` that this plugin provides.
100
104
101
-
#### Legacy Config (`.eslintrc`)
102
-
103
-
Use `.eslintrc.*` file to configure rules. See also: <https://eslint.org/docs/user-guide/configuring>.
104
-
105
-
Example **.eslintrc.js**:
106
-
107
-
```js
108
-
module.exports= {
109
-
extends: [
110
-
// add more generic rule sets here, such as:
111
-
// 'eslint:recommended',
112
-
'plugin:svelte/recommended'
113
-
],
114
-
rules: {
115
-
// override/add rules settings here, such as:
116
-
// 'svelte/rule-name': 'error'
117
-
}
118
-
};
119
-
```
120
-
121
-
This plugin provides configs:
122
-
123
-
-`plugin:svelte/base` ... Configuration to enable correct Svelte parsing.
124
-
-`plugin:svelte/recommended` ... Above, plus rules to prevent errors or unintended behavior.
125
-
-`plugin:svelte/prettier` ... Turns off rules that may conflict with [Prettier](https://prettier.io/) (You still need to configure prettier to work with svelte yourself, for example by using [prettier-plugin-svelte](https://github.com/sveltejs/prettier-plugin-svelte).).
126
-
-`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.
127
-
128
-
See [the rule list](https://sveltejs.github.io/eslint-plugin-svelte/rules/) to get the `rules` that this plugin provides.
129
-
130
-
::: warning ❗ Attention
131
-
132
-
The `eslint-plugin-svelte` can not be used with the [eslint-plugin-svelte3].
133
-
If you are using [eslint-plugin-svelte3] you need to remove it.
134
-
135
-
```diff
136
-
"plugins": [
137
-
- "svelte3"
138
-
]
139
-
```
140
-
141
-
:::
142
-
143
105
#### Parser Configuration
144
106
145
107
If you have specified a parser, you need to configure a parser for `.svelte`.
146
108
147
-
For example, if you are using the `"@babel/eslint-parser"`, configure it as follows:
148
-
149
-
```js
150
-
module.exports= {
151
-
// ...
152
-
extends: ['plugin:svelte/recommended'],
153
-
// ...
154
-
parser:'@babel/eslint-parser',
155
-
// Add an `overrides` section to add a parser configuration for svelte.
156
-
overrides: [
157
-
{
158
-
files: ['*.svelte'],
159
-
parser:'svelte-eslint-parser'
160
-
}
161
-
// ...
162
-
]
163
-
// ...
164
-
};
165
-
```
166
-
167
109
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.
168
110
169
111
```js
170
-
module.exports= {
171
-
// ...
172
-
extends: ['plugin:svelte/recommended'],
173
-
// ...
174
-
parser:'@typescript-eslint/parser',
175
-
parserOptions: {
176
-
// ...
177
-
project:'path/to/your/tsconfig.json',
178
-
extraFileExtensions: ['.svelte'] // This is a required setting in `@typescript-eslint/parser` v4.24.0.
179
-
},
180
-
overrides: [
181
-
{
182
-
files: ['*.svelte'],
183
-
parser:'svelte-eslint-parser',
184
-
// Parse the `<script>` in `.svelte` as TypeScript by adding the following configuration.
If you want to run `eslint` from the command line, make sure you include the `.svelte` extension using [the `--ext` option](https://eslint.org/docs/user-guide/configuring#specifying-file-extensions-to-lint) or a glob pattern, because ESLint targets only `.js` files by default.
0 commit comments