eslint-plugin-svelte 2.24.0 → 2.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +63 -63
- package/lib/utils/index.js +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
`eslint-plugin-svelte` is [ESLint] plugin for [Svelte].
|
|
4
4
|
It provides many unique check rules by using the template AST.
|
|
5
|
-
You can check on the [Online DEMO](https://
|
|
5
|
+
You can check on the [Online DEMO](https://sveltejs.github.io/eslint-plugin-svelte/playground/).
|
|
6
6
|
|
|
7
7
|
[](https://www.npmjs.com/package/eslint-plugin-svelte)
|
|
8
8
|
[](https://www.npmjs.com/package/eslint-plugin-svelte)
|
|
@@ -11,9 +11,9 @@ You can check on the [Online DEMO](https://ota-meshi.github.io/eslint-plugin-sve
|
|
|
11
11
|
[](http://www.npmtrends.com/eslint-plugin-svelte)
|
|
12
12
|
[](http://www.npmtrends.com/eslint-plugin-svelte)
|
|
13
13
|
[](http://www.npmtrends.com/eslint-plugin-svelte)
|
|
14
|
-
[](https://github.com/sveltejs/eslint-plugin-svelte/actions?query=workflow%3ACI)
|
|
15
15
|
|
|
16
|
-
[](https://github.com/plantain-00/type-coverage)
|
|
17
17
|
[](https://conventionalcommits.org)
|
|
18
18
|
[](https://github.com/prettier/prettier)
|
|
19
19
|
[](https://github.com/atlassian/changesets)
|
|
@@ -33,18 +33,18 @@ The [svelte-eslint-parser] aims to make it easy to create your own rules for the
|
|
|
33
33
|
|
|
34
34
|
The [svelte-eslint-parser] and the `eslint-plugin-svelte` can not be used with the [eslint-plugin-svelte3].
|
|
35
35
|
|
|
36
|
-
[svelte-eslint-parser]: https://github.com/
|
|
36
|
+
[svelte-eslint-parser]: https://github.com/sveltejs/svelte-eslint-parser
|
|
37
37
|
[eslint-plugin-svelte3]: https://github.com/sveltejs/eslint-plugin-svelte3
|
|
38
38
|
|
|
39
39
|
<!--DOCS_IGNORE_START-->
|
|
40
40
|
|
|
41
41
|
## Migration Guide
|
|
42
42
|
|
|
43
|
-
To migrate from `eslint-plugin-svelte` v1, or [`@ota-meshi/eslint-plugin-svelte`](https://www.npmjs.com/package/@ota-meshi/eslint-plugin-svelte), please refer to the [migration guide](https://
|
|
43
|
+
To migrate from `eslint-plugin-svelte` v1, or [`@ota-meshi/eslint-plugin-svelte`](https://www.npmjs.com/package/@ota-meshi/eslint-plugin-svelte), please refer to the [migration guide](https://sveltejs.github.io/eslint-plugin-svelte/migration/).
|
|
44
44
|
|
|
45
45
|
## :book: Documentation
|
|
46
46
|
|
|
47
|
-
See [documents](https://
|
|
47
|
+
See [documents](https://sveltejs.github.io/eslint-plugin-svelte/).
|
|
48
48
|
|
|
49
49
|
## :cd: Installation
|
|
50
50
|
|
|
@@ -91,7 +91,7 @@ This plugin provides configs:
|
|
|
91
91
|
- `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).).
|
|
92
92
|
- `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.
|
|
93
93
|
|
|
94
|
-
See [the rule list](https://
|
|
94
|
+
See [the rule list](https://sveltejs.github.io/eslint-plugin-svelte/rules/) to get the `rules` that this plugin provides.
|
|
95
95
|
|
|
96
96
|
::: warning ❗ Attention
|
|
97
97
|
|
|
@@ -182,7 +182,7 @@ module.exports = {
|
|
|
182
182
|
}
|
|
183
183
|
```
|
|
184
184
|
|
|
185
|
-
See also <https://github.com/
|
|
185
|
+
See also <https://github.com/sveltejs/svelte-eslint-parser#readme>.
|
|
186
186
|
|
|
187
187
|
::: warning ❗ Attention
|
|
188
188
|
|
|
@@ -233,7 +233,7 @@ For example, set rules on the template that cannot avoid false positives.
|
|
|
233
233
|
|
|
234
234
|
#### settings.svelte.compileOptions
|
|
235
235
|
|
|
236
|
-
Specifies options for Svelte compile. Effects rules that use Svelte compile. The target rules are [svelte/valid-compile](https://
|
|
236
|
+
Specifies options for Svelte compile. Effects rules that use Svelte compile. The target rules are [svelte/valid-compile](https://sveltejs.github.io/eslint-plugin-svelte/rules/valid-compile/) and [svelte/no-unused-svelte-ignore](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-unused-svelte-ignore/). **Note that it has no effect on ESLint's custom parser**.
|
|
237
237
|
|
|
238
238
|
- `postcss` ... Specifies options related to PostCSS. You can disable the PostCSS process by specifying `false`.
|
|
239
239
|
- `configFilePath` ... Specifies the path of the directory containing the PostCSS configuration.
|
|
@@ -309,23 +309,23 @@ These rules relate to possible syntax or logic errors in Svelte code:
|
|
|
309
309
|
|
|
310
310
|
| Rule ID | Description | |
|
|
311
311
|
|:--------|:------------|:---|
|
|
312
|
-
| [svelte/infinite-reactive-loop](https://
|
|
313
|
-
| [svelte/no-dom-manipulating](https://
|
|
314
|
-
| [svelte/no-dupe-else-if-blocks](https://
|
|
315
|
-
| [svelte/no-dupe-on-directives](https://
|
|
316
|
-
| [svelte/no-dupe-style-properties](https://
|
|
317
|
-
| [svelte/no-dupe-use-directives](https://
|
|
318
|
-
| [svelte/no-dynamic-slot-name](https://
|
|
319
|
-
| [svelte/no-export-load-in-svelte-module-in-kit-pages](https://
|
|
320
|
-
| [svelte/no-not-function-handler](https://
|
|
321
|
-
| [svelte/no-object-in-text-mustaches](https://
|
|
322
|
-
| [svelte/no-shorthand-style-property-overrides](https://
|
|
323
|
-
| [svelte/no-store-async](https://
|
|
324
|
-
| [svelte/no-unknown-style-directive-property](https://
|
|
325
|
-
| [svelte/require-store-callbacks-use-set-param](https://
|
|
326
|
-
| [svelte/require-store-reactive-access](https://
|
|
327
|
-
| [svelte/valid-compile](https://
|
|
328
|
-
| [svelte/valid-prop-names-in-kit-pages](https://
|
|
312
|
+
| [svelte/infinite-reactive-loop](https://sveltejs.github.io/eslint-plugin-svelte/rules/infinite-reactive-loop/) | Svelte runtime prevents calling the same reactive statement twice in a microtask. But between different microtask, it doesn't prevent. | |
|
|
313
|
+
| [svelte/no-dom-manipulating](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-dom-manipulating/) | disallow DOM manipulating | |
|
|
314
|
+
| [svelte/no-dupe-else-if-blocks](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-dupe-else-if-blocks/) | disallow duplicate conditions in `{#if}` / `{:else if}` chains | :star: |
|
|
315
|
+
| [svelte/no-dupe-on-directives](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-dupe-on-directives/) | disallow duplicate `on:` directives | |
|
|
316
|
+
| [svelte/no-dupe-style-properties](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-dupe-style-properties/) | disallow duplicate style properties | :star: |
|
|
317
|
+
| [svelte/no-dupe-use-directives](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-dupe-use-directives/) | disallow duplicate `use:` directives | |
|
|
318
|
+
| [svelte/no-dynamic-slot-name](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-dynamic-slot-name/) | disallow dynamic slot name | :star::wrench: |
|
|
319
|
+
| [svelte/no-export-load-in-svelte-module-in-kit-pages](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-export-load-in-svelte-module-in-kit-pages/) | disallow exporting load functions in `*.svelte` module in Svelte Kit page components. | |
|
|
320
|
+
| [svelte/no-not-function-handler](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-not-function-handler/) | disallow use of not function in event handler | :star: |
|
|
321
|
+
| [svelte/no-object-in-text-mustaches](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-object-in-text-mustaches/) | disallow objects in text mustache interpolation | :star: |
|
|
322
|
+
| [svelte/no-shorthand-style-property-overrides](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-shorthand-style-property-overrides/) | disallow shorthand style properties that override related longhand properties | :star: |
|
|
323
|
+
| [svelte/no-store-async](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-store-async/) | disallow using async/await inside svelte stores because it causes issues with the auto-unsubscribing features | |
|
|
324
|
+
| [svelte/no-unknown-style-directive-property](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-unknown-style-directive-property/) | disallow unknown `style:property` | :star: |
|
|
325
|
+
| [svelte/require-store-callbacks-use-set-param](https://sveltejs.github.io/eslint-plugin-svelte/rules/require-store-callbacks-use-set-param/) | store callbacks must use `set` param | |
|
|
326
|
+
| [svelte/require-store-reactive-access](https://sveltejs.github.io/eslint-plugin-svelte/rules/require-store-reactive-access/) | disallow to use of the store itself as an operand. Need to use $ prefix or get function. | :wrench: |
|
|
327
|
+
| [svelte/valid-compile](https://sveltejs.github.io/eslint-plugin-svelte/rules/valid-compile/) | disallow warnings when compiling. | :star: |
|
|
328
|
+
| [svelte/valid-prop-names-in-kit-pages](https://sveltejs.github.io/eslint-plugin-svelte/rules/valid-prop-names-in-kit-pages/) | disallow props other than data or errors in Svelte Kit page components. | |
|
|
329
329
|
|
|
330
330
|
## Security Vulnerability
|
|
331
331
|
|
|
@@ -333,8 +333,8 @@ These rules relate to security vulnerabilities in Svelte code:
|
|
|
333
333
|
|
|
334
334
|
| Rule ID | Description | |
|
|
335
335
|
|:--------|:------------|:---|
|
|
336
|
-
| [svelte/no-at-html-tags](https://
|
|
337
|
-
| [svelte/no-target-blank](https://
|
|
336
|
+
| [svelte/no-at-html-tags](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-at-html-tags/) | disallow use of `{@html}` to prevent XSS attack | :star: |
|
|
337
|
+
| [svelte/no-target-blank](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-target-blank/) | disallow `target="_blank"` attribute without `rel="noopener noreferrer"` | |
|
|
338
338
|
|
|
339
339
|
## Best Practices
|
|
340
340
|
|
|
@@ -342,17 +342,17 @@ These rules relate to better ways of doing things to help you avoid problems:
|
|
|
342
342
|
|
|
343
343
|
| Rule ID | Description | |
|
|
344
344
|
|:--------|:------------|:---|
|
|
345
|
-
| [svelte/block-lang](https://
|
|
346
|
-
| [svelte/button-has-type](https://
|
|
347
|
-
| [svelte/no-at-debug-tags](https://
|
|
348
|
-
| [svelte/no-reactive-functions](https://
|
|
349
|
-
| [svelte/no-reactive-literals](https://
|
|
350
|
-
| [svelte/no-unused-svelte-ignore](https://
|
|
351
|
-
| [svelte/no-useless-mustaches](https://
|
|
352
|
-
| [svelte/prefer-destructured-store-props](https://
|
|
353
|
-
| [svelte/require-event-dispatcher-types](https://
|
|
354
|
-
| [svelte/require-optimized-style-attribute](https://
|
|
355
|
-
| [svelte/require-stores-init](https://
|
|
345
|
+
| [svelte/block-lang](https://sveltejs.github.io/eslint-plugin-svelte/rules/block-lang/) | disallows the use of languages other than those specified in the configuration for the lang attribute of `<script>` and `<style>` blocks. | |
|
|
346
|
+
| [svelte/button-has-type](https://sveltejs.github.io/eslint-plugin-svelte/rules/button-has-type/) | disallow usage of button without an explicit type attribute | |
|
|
347
|
+
| [svelte/no-at-debug-tags](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-at-debug-tags/) | disallow the use of `{@debug}` | :star: |
|
|
348
|
+
| [svelte/no-reactive-functions](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-reactive-functions/) | it's not necessary to define functions in reactive statements | :bulb: |
|
|
349
|
+
| [svelte/no-reactive-literals](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-reactive-literals/) | don't assign literal values in reactive statements | :bulb: |
|
|
350
|
+
| [svelte/no-unused-svelte-ignore](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-unused-svelte-ignore/) | disallow unused svelte-ignore comments | :star: |
|
|
351
|
+
| [svelte/no-useless-mustaches](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-useless-mustaches/) | disallow unnecessary mustache interpolations | :wrench: |
|
|
352
|
+
| [svelte/prefer-destructured-store-props](https://sveltejs.github.io/eslint-plugin-svelte/rules/prefer-destructured-store-props/) | destructure values from object stores for better change tracking & fewer redraws | :bulb: |
|
|
353
|
+
| [svelte/require-event-dispatcher-types](https://sveltejs.github.io/eslint-plugin-svelte/rules/require-event-dispatcher-types/) | require type parameters for `createEventDispatcher` | |
|
|
354
|
+
| [svelte/require-optimized-style-attribute](https://sveltejs.github.io/eslint-plugin-svelte/rules/require-optimized-style-attribute/) | require style attributes that can be optimized | |
|
|
355
|
+
| [svelte/require-stores-init](https://sveltejs.github.io/eslint-plugin-svelte/rules/require-stores-init/) | require initial value in store | |
|
|
356
356
|
|
|
357
357
|
## Stylistic Issues
|
|
358
358
|
|
|
@@ -360,22 +360,22 @@ These rules relate to style guidelines, and are therefore quite subjective:
|
|
|
360
360
|
|
|
361
361
|
| Rule ID | Description | |
|
|
362
362
|
|:--------|:------------|:---|
|
|
363
|
-
| [svelte/derived-has-same-inputs-outputs](https://
|
|
364
|
-
| [svelte/first-attribute-linebreak](https://
|
|
365
|
-
| [svelte/html-closing-bracket-spacing](https://
|
|
366
|
-
| [svelte/html-quotes](https://
|
|
367
|
-
| [svelte/html-self-closing](https://
|
|
368
|
-
| [svelte/indent](https://
|
|
369
|
-
| [svelte/max-attributes-per-line](https://
|
|
370
|
-
| [svelte/mustache-spacing](https://
|
|
371
|
-
| [svelte/no-extra-reactive-curlies](https://
|
|
372
|
-
| [svelte/no-spaces-around-equal-signs-in-attribute](https://
|
|
373
|
-
| [svelte/prefer-class-directive](https://
|
|
374
|
-
| [svelte/prefer-style-directive](https://
|
|
375
|
-
| [svelte/shorthand-attribute](https://
|
|
376
|
-
| [svelte/shorthand-directive](https://
|
|
377
|
-
| [svelte/sort-attributes](https://
|
|
378
|
-
| [svelte/spaced-html-comment](https://
|
|
363
|
+
| [svelte/derived-has-same-inputs-outputs](https://sveltejs.github.io/eslint-plugin-svelte/rules/derived-has-same-inputs-outputs/) | derived store should use same variable names between values and callback | |
|
|
364
|
+
| [svelte/first-attribute-linebreak](https://sveltejs.github.io/eslint-plugin-svelte/rules/first-attribute-linebreak/) | enforce the location of first attribute | :wrench: |
|
|
365
|
+
| [svelte/html-closing-bracket-spacing](https://sveltejs.github.io/eslint-plugin-svelte/rules/html-closing-bracket-spacing/) | require or disallow a space before tag's closing brackets | :wrench: |
|
|
366
|
+
| [svelte/html-quotes](https://sveltejs.github.io/eslint-plugin-svelte/rules/html-quotes/) | enforce quotes style of HTML attributes | :wrench: |
|
|
367
|
+
| [svelte/html-self-closing](https://sveltejs.github.io/eslint-plugin-svelte/rules/html-self-closing/) | enforce self-closing style | :wrench: |
|
|
368
|
+
| [svelte/indent](https://sveltejs.github.io/eslint-plugin-svelte/rules/indent/) | enforce consistent indentation | :wrench: |
|
|
369
|
+
| [svelte/max-attributes-per-line](https://sveltejs.github.io/eslint-plugin-svelte/rules/max-attributes-per-line/) | enforce the maximum number of attributes per line | :wrench: |
|
|
370
|
+
| [svelte/mustache-spacing](https://sveltejs.github.io/eslint-plugin-svelte/rules/mustache-spacing/) | enforce unified spacing in mustache | :wrench: |
|
|
371
|
+
| [svelte/no-extra-reactive-curlies](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-extra-reactive-curlies/) | disallow wrapping single reactive statements in curly braces | :bulb: |
|
|
372
|
+
| [svelte/no-spaces-around-equal-signs-in-attribute](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-spaces-around-equal-signs-in-attribute/) | disallow spaces around equal signs in attribute | :wrench: |
|
|
373
|
+
| [svelte/prefer-class-directive](https://sveltejs.github.io/eslint-plugin-svelte/rules/prefer-class-directive/) | require class directives instead of ternary expressions | :wrench: |
|
|
374
|
+
| [svelte/prefer-style-directive](https://sveltejs.github.io/eslint-plugin-svelte/rules/prefer-style-directive/) | require style directives instead of style attribute | :wrench: |
|
|
375
|
+
| [svelte/shorthand-attribute](https://sveltejs.github.io/eslint-plugin-svelte/rules/shorthand-attribute/) | enforce use of shorthand syntax in attribute | :wrench: |
|
|
376
|
+
| [svelte/shorthand-directive](https://sveltejs.github.io/eslint-plugin-svelte/rules/shorthand-directive/) | enforce use of shorthand syntax in directives | :wrench: |
|
|
377
|
+
| [svelte/sort-attributes](https://sveltejs.github.io/eslint-plugin-svelte/rules/sort-attributes/) | enforce order of attributes | :wrench: |
|
|
378
|
+
| [svelte/spaced-html-comment](https://sveltejs.github.io/eslint-plugin-svelte/rules/spaced-html-comment/) | enforce consistent spacing after the `<!--` and before the `-->` in a HTML comment | :wrench: |
|
|
379
379
|
|
|
380
380
|
## Extension Rules
|
|
381
381
|
|
|
@@ -383,8 +383,8 @@ These rules extend the rules provided by ESLint itself, or other plugins to work
|
|
|
383
383
|
|
|
384
384
|
| Rule ID | Description | |
|
|
385
385
|
|:--------|:------------|:---|
|
|
386
|
-
| [svelte/no-inner-declarations](https://
|
|
387
|
-
| [svelte/no-trailing-spaces](https://
|
|
386
|
+
| [svelte/no-inner-declarations](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-inner-declarations/) | disallow variable or `function` declarations in nested blocks | :star: |
|
|
387
|
+
| [svelte/no-trailing-spaces](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-trailing-spaces/) | disallow trailing whitespace at the end of lines | :wrench: |
|
|
388
388
|
|
|
389
389
|
## Experimental
|
|
390
390
|
|
|
@@ -392,8 +392,8 @@ These rules extend the rules provided by ESLint itself, or other plugins to work
|
|
|
392
392
|
|
|
393
393
|
| Rule ID | Description | |
|
|
394
394
|
|:--------|:------------|:---|
|
|
395
|
-
| [svelte/experimental-require-slot-types](https://
|
|
396
|
-
| [svelte/experimental-require-strict-events](https://
|
|
395
|
+
| [svelte/experimental-require-slot-types](https://sveltejs.github.io/eslint-plugin-svelte/rules/experimental-require-slot-types/) | require slot type declaration using the `$$Slots` interface | |
|
|
396
|
+
| [svelte/experimental-require-strict-events](https://sveltejs.github.io/eslint-plugin-svelte/rules/experimental-require-strict-events/) | require the strictEvents attribute on `<script>` tags | |
|
|
397
397
|
|
|
398
398
|
## System
|
|
399
399
|
|
|
@@ -401,8 +401,8 @@ These rules relate to this plugin works:
|
|
|
401
401
|
|
|
402
402
|
| Rule ID | Description | |
|
|
403
403
|
|:--------|:------------|:---|
|
|
404
|
-
| [svelte/comment-directive](https://
|
|
405
|
-
| [svelte/system](https://
|
|
404
|
+
| [svelte/comment-directive](https://sveltejs.github.io/eslint-plugin-svelte/rules/comment-directive/) | support comment-directives in HTML template | :star: |
|
|
405
|
+
| [svelte/system](https://sveltejs.github.io/eslint-plugin-svelte/rules/system/) | system rule for working this plugin | :star: |
|
|
406
406
|
|
|
407
407
|
## Deprecated
|
|
408
408
|
|
|
@@ -411,7 +411,7 @@ These rules relate to this plugin works:
|
|
|
411
411
|
|
|
412
412
|
| Rule ID | Replaced by |
|
|
413
413
|
|:--------|:------------|
|
|
414
|
-
| [svelte/@typescript-eslint/no-unnecessary-condition](https://
|
|
414
|
+
| [svelte/@typescript-eslint/no-unnecessary-condition](https://sveltejs.github.io/eslint-plugin-svelte/rules/@typescript-eslint/no-unnecessary-condition/) | This rule is no longer needed when using svelte-eslint-parser>=v0.19.0. |
|
|
415
415
|
|
|
416
416
|
<!--RULES_TABLE_END-->
|
|
417
417
|
<!--RULES_SECTION_END-->
|
|
@@ -429,7 +429,7 @@ See also [CONTRIBUTING.md](./CONTRIBUTING.md)
|
|
|
429
429
|
|
|
430
430
|
### Working With Rules
|
|
431
431
|
|
|
432
|
-
This plugin uses [svelte-eslint-parser](https://github.com/
|
|
432
|
+
This plugin uses [svelte-eslint-parser](https://github.com/sveltejs/svelte-eslint-parser) for the parser. Check [here](https://sveltejs.github.io/svelte-eslint-parser/) to find out about AST.
|
|
433
433
|
|
|
434
434
|
<!--DOCS_IGNORE_END-->
|
|
435
435
|
|
package/lib/utils/index.js
CHANGED
|
@@ -7,7 +7,7 @@ function createRule(ruleName, rule) {
|
|
|
7
7
|
...rule.meta,
|
|
8
8
|
docs: {
|
|
9
9
|
...rule.meta.docs,
|
|
10
|
-
url: `https://
|
|
10
|
+
url: `https://sveltejs.github.io/eslint-plugin-svelte/rules/${ruleName}/`,
|
|
11
11
|
ruleId: `svelte/${ruleName}`,
|
|
12
12
|
ruleName,
|
|
13
13
|
},
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-svelte",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.26.0",
|
|
4
4
|
"description": "ESLint plugin for Svelte using AST",
|
|
5
|
-
"repository": "git+https://github.com/
|
|
6
|
-
"homepage": "https://
|
|
5
|
+
"repository": "git+https://github.com/sveltejs/eslint-plugin-svelte.git",
|
|
6
|
+
"homepage": "https://sveltejs.github.io/eslint-plugin-svelte",
|
|
7
7
|
"author": "Yosuke Ota (https://github.com/ota-meshi)",
|
|
8
8
|
"contributors": [
|
|
9
9
|
"JounQin (https://github.com/JounQin)"
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"postcss": "^8.4.5",
|
|
74
74
|
"postcss-load-config": "^3.1.4",
|
|
75
75
|
"postcss-safe-parser": "^6.0.0",
|
|
76
|
-
"svelte-eslint-parser": "^0.
|
|
76
|
+
"svelte-eslint-parser": "^0.26.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
79
|
"@1stg/browserslist-config": "^1.2.3",
|
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
"semver": "^7.3.5",
|
|
159
159
|
"simple-git-hooks": "^2.8.0",
|
|
160
160
|
"stylelint": "^15.0.0",
|
|
161
|
-
"stylelint-config-standard": "^
|
|
161
|
+
"stylelint-config-standard": "^32.0.0",
|
|
162
162
|
"stylus": "^0.59.0",
|
|
163
163
|
"svelte": "^3.46.1",
|
|
164
164
|
"svelte-adapter-ghpages": "0.1.0",
|