Skip to content

Commit 97a4135

Browse files
authored
chore: move repo (#309)
* chore: move repo * add changeset
1 parent 59718e5 commit 97a4135

File tree

12 files changed

+54
-49
lines changed

12 files changed

+54
-49
lines changed

.changeset/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"changelog": [
44
"@changesets/changelog-github",
55
{
6-
"repo": "ota-meshi/svelte-eslint-parser"
6+
"repo": "sveltejs/svelte-eslint-parser"
77
}
88
],
99
"commit": false,

.changeset/two-lamps-behave.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"svelte-eslint-parser": patch
3+
---
4+
5+
chore: move repo and move url of docs

.github/ISSUE_TEMPLATE/bug_report.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ body:
1212
label: Before You File a Bug Report Please Confirm You Have Done The Following...
1313
description: If any of these required steps are not taken, we may not be able to review your issue. Help us to help you!
1414
options:
15-
- label: I'm using [eslint-plugin-svelte](https://github.com/ota-meshi/eslint-plugin-svelte). (`*.svelte` file linting does not work with the parser alone. You should also use eslint-plugin-svelte with it.)
16-
- label: I'm sure the problem is a parser problem. (If you are not sure, search for the issue in [eslint-plugin-svelte](https://github.com/ota-meshi/eslint-plugin-svelte) repo and open the issue in [eslint-plugin-svelte](https://github.com/ota-meshi/eslint-plugin-svelte) repo if there is no solution.
15+
- label: I'm using [eslint-plugin-svelte](https://github.com/sveltejs/eslint-plugin-svelte). (`*.svelte` file linting does not work with the parser alone. You should also use eslint-plugin-svelte with it.)
16+
- label: I'm sure the problem is a parser problem. (If you are not sure, search for the issue in [eslint-plugin-svelte](https://github.com/sveltejs/eslint-plugin-svelte) repo and open the issue in [eslint-plugin-svelte](https://github.com/sveltejs/eslint-plugin-svelte) repo if there is no solution.
1717
required: true
1818
- label: I have tried restarting my IDE and the issue persists.
1919
required: true

CHANGELOG.md

+23-23
Original file line numberDiff line numberDiff line change
@@ -4,126 +4,126 @@
44

55
### Minor Changes
66

7-
- [#296](https://github.com/ota-meshi/svelte-eslint-parser/pull/296) [`21d8c1c`](https://github.com/ota-meshi/svelte-eslint-parser/commit/21d8c1ccc81e1d456327c1a16925b81044ef051a) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: improved event handler type
7+
- [#296](https://github.com/sveltejs/svelte-eslint-parser/pull/296) [`21d8c1c`](https://github.com/sveltejs/svelte-eslint-parser/commit/21d8c1ccc81e1d456327c1a16925b81044ef051a) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: improved event handler type
88

99
## 0.24.2
1010

1111
### Patch Changes
1212

13-
- [#301](https://github.com/ota-meshi/svelte-eslint-parser/pull/301) [`ce2deb9`](https://github.com/ota-meshi/svelte-eslint-parser/commit/ce2deb9ddc67211fe5c6b67172e1da9d53d082a3) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: wrong typing for typescript v5
13+
- [#301](https://github.com/sveltejs/svelte-eslint-parser/pull/301) [`ce2deb9`](https://github.com/sveltejs/svelte-eslint-parser/commit/ce2deb9ddc67211fe5c6b67172e1da9d53d082a3) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: wrong typing for typescript v5
1414

1515
## 0.24.1
1616

1717
### Patch Changes
1818

19-
- [#299](https://github.com/ota-meshi/svelte-eslint-parser/pull/299) [`472a3bb`](https://github.com/ota-meshi/svelte-eslint-parser/commit/472a3bb625adbc451f789b8787e79f771e27fd10) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: wrong scope for reactive block statement
19+
- [#299](https://github.com/sveltejs/svelte-eslint-parser/pull/299) [`472a3bb`](https://github.com/sveltejs/svelte-eslint-parser/commit/472a3bb625adbc451f789b8787e79f771e27fd10) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: wrong scope for reactive block statement
2020

2121
## 0.24.0
2222

2323
### Minor Changes
2424

25-
- [#292](https://github.com/ota-meshi/svelte-eslint-parser/pull/292) [`ec061f5`](https://github.com/ota-meshi/svelte-eslint-parser/commit/ec061f574d73aa25c13a631bb3be6fa2f861e8e8) Thanks [@ota-meshi](https://github.com/ota-meshi)! - BREAKING: fix resolve to module scope for top level statements
25+
- [#292](https://github.com/sveltejs/svelte-eslint-parser/pull/292) [`ec061f5`](https://github.com/sveltejs/svelte-eslint-parser/commit/ec061f574d73aa25c13a631bb3be6fa2f861e8e8) Thanks [@ota-meshi](https://github.com/ota-meshi)! - BREAKING: fix resolve to module scope for top level statements
2626

2727
This change corrects the result of `context.getScope()`, but it is a breaking change.
2828

29-
- [#294](https://github.com/ota-meshi/svelte-eslint-parser/pull/294) [`14d6e95`](https://github.com/ota-meshi/svelte-eslint-parser/commit/14d6e95773ea638855c25927c11f7a2df1632801) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: add peerDependenciesMeta to package.json
29+
- [#294](https://github.com/sveltejs/svelte-eslint-parser/pull/294) [`14d6e95`](https://github.com/sveltejs/svelte-eslint-parser/commit/14d6e95773ea638855c25927c11f7a2df1632801) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: add peerDependenciesMeta to package.json
3030

31-
- [#295](https://github.com/ota-meshi/svelte-eslint-parser/pull/295) [`924cd3e`](https://github.com/ota-meshi/svelte-eslint-parser/commit/924cd3e72db0d9d09aed1da5ec3f2e5995c9ca77) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: export name property
31+
- [#295](https://github.com/sveltejs/svelte-eslint-parser/pull/295) [`924cd3e`](https://github.com/sveltejs/svelte-eslint-parser/commit/924cd3e72db0d9d09aed1da5ec3f2e5995c9ca77) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: export name property
3232

3333
## 0.23.0
3434

3535
### Minor Changes
3636

37-
- [#271](https://github.com/ota-meshi/svelte-eslint-parser/pull/271) [`e355d5c`](https://github.com/ota-meshi/svelte-eslint-parser/commit/e355d5c4d1210ae8b74fd50be6263efc08b849e1) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: wrong variable scope in let directive
37+
- [#271](https://github.com/sveltejs/svelte-eslint-parser/pull/271) [`e355d5c`](https://github.com/sveltejs/svelte-eslint-parser/commit/e355d5c4d1210ae8b74fd50be6263efc08b849e1) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: wrong variable scope in let directive
3838

3939
## 0.22.4
4040

4141
### Patch Changes
4242

43-
- [#266](https://github.com/ota-meshi/svelte-eslint-parser/pull/266) [`d890090`](https://github.com/ota-meshi/svelte-eslint-parser/commit/d8900904d99e43acd2cff8f96258bcd1e2e01f29) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: virtual references remained
43+
- [#266](https://github.com/sveltejs/svelte-eslint-parser/pull/266) [`d890090`](https://github.com/sveltejs/svelte-eslint-parser/commit/d8900904d99e43acd2cff8f96258bcd1e2e01f29) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: virtual references remained
4444

4545
## 0.22.3
4646

4747
### Patch Changes
4848

49-
- [#262](https://github.com/ota-meshi/svelte-eslint-parser/pull/262) [`03971d7`](https://github.com/ota-meshi/svelte-eslint-parser/commit/03971d737371a4288e2d08466df469a16d4b03b2) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: parsing errors (or wrong AST) for js comments in template
49+
- [#262](https://github.com/sveltejs/svelte-eslint-parser/pull/262) [`03971d7`](https://github.com/sveltejs/svelte-eslint-parser/commit/03971d737371a4288e2d08466df469a16d4b03b2) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: parsing errors (or wrong AST) for js comments in template
5050

5151
## 0.22.2
5252

5353
### Patch Changes
5454

55-
- [`e670d44`](https://github.com/ota-meshi/svelte-eslint-parser/commit/e670d4406a188c56505205ef84bd9c0819e78d94) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: virtual references remained
55+
- [`e670d44`](https://github.com/sveltejs/svelte-eslint-parser/commit/e670d4406a188c56505205ef84bd9c0819e78d94) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: virtual references remained
5656

5757
## 0.22.1
5858

5959
### Patch Changes
6060

61-
- [#252](https://github.com/ota-meshi/svelte-eslint-parser/pull/252) [`fd8adbd`](https://github.com/ota-meshi/svelte-eslint-parser/commit/fd8adbd21a4c6a5ed7e9b15e22562d305024f32b) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: self-closing style with external source
61+
- [#252](https://github.com/sveltejs/svelte-eslint-parser/pull/252) [`fd8adbd`](https://github.com/sveltejs/svelte-eslint-parser/commit/fd8adbd21a4c6a5ed7e9b15e22562d305024f32b) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: self-closing style with external source
6262

6363
## 0.22.0
6464

6565
### Minor Changes
6666

67-
- [#249](https://github.com/ota-meshi/svelte-eslint-parser/pull/249) [`d560864`](https://github.com/ota-meshi/svelte-eslint-parser/commit/d560864681773fb1e795f8f656b3c90c5ca05e5d) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: parsing error when use with member expr
67+
- [#249](https://github.com/sveltejs/svelte-eslint-parser/pull/249) [`d560864`](https://github.com/sveltejs/svelte-eslint-parser/commit/d560864681773fb1e795f8f656b3c90c5ca05e5d) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: parsing error when use with member expr
6868

6969
## 0.21.0
7070

7171
### Minor Changes
7272

73-
- [#244](https://github.com/ota-meshi/svelte-eslint-parser/pull/244) [`7ebf326`](https://github.com/ota-meshi/svelte-eslint-parser/commit/7ebf326c97576bfc721bc133e24c6c643e87e6de) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: `<template lang="...">` to parse as raw text
73+
- [#244](https://github.com/sveltejs/svelte-eslint-parser/pull/244) [`7ebf326`](https://github.com/sveltejs/svelte-eslint-parser/commit/7ebf326c97576bfc721bc133e24c6c643e87e6de) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: `<template lang="...">` to parse as raw text
7474

7575
## 0.20.0
7676

7777
### Minor Changes
7878

79-
- [#241](https://github.com/ota-meshi/svelte-eslint-parser/pull/241) [`df83e3e`](https://github.com/ota-meshi/svelte-eslint-parser/commit/df83e3e185b2a7436b87c00c781a65c9fb7d07b9) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: support for `typescript-eslint-parser-for-extra-files`
79+
- [#241](https://github.com/sveltejs/svelte-eslint-parser/pull/241) [`df83e3e`](https://github.com/sveltejs/svelte-eslint-parser/commit/df83e3e185b2a7436b87c00c781a65c9fb7d07b9) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: support for `typescript-eslint-parser-for-extra-files`
8080

8181
## 0.19.3
8282

8383
### Patch Changes
8484

85-
- [#238](https://github.com/ota-meshi/svelte-eslint-parser/pull/238) [`6e063c2`](https://github.com/ota-meshi/svelte-eslint-parser/commit/6e063c25ac54f4242025a8fd9bb2d42dd38447dc) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: missing ts node for key of shorthand attribute
85+
- [#238](https://github.com/sveltejs/svelte-eslint-parser/pull/238) [`6e063c2`](https://github.com/sveltejs/svelte-eslint-parser/commit/6e063c25ac54f4242025a8fd9bb2d42dd38447dc) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: missing ts node for key of shorthand attribute
8686

8787
## 0.19.2
8888

8989
### Patch Changes
9090

91-
- [#236](https://github.com/ota-meshi/svelte-eslint-parser/pull/236) [`82389a3`](https://github.com/ota-meshi/svelte-eslint-parser/commit/82389a3840e63b28d3a93bc20d92e36fb658ae57) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: crash in `@typescript-eslint/no-misused-promises` rule
91+
- [#236](https://github.com/sveltejs/svelte-eslint-parser/pull/236) [`82389a3`](https://github.com/sveltejs/svelte-eslint-parser/commit/82389a3840e63b28d3a93bc20d92e36fb658ae57) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: crash in `@typescript-eslint/no-misused-promises` rule
9292

9393
## 0.19.1
9494

9595
### Patch Changes
9696

97-
- [#234](https://github.com/ota-meshi/svelte-eslint-parser/pull/234) [`5f237d2`](https://github.com/ota-meshi/svelte-eslint-parser/commit/5f237d2015551596d3be36b6cbc4b17fb75f91e6) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: wrong AST and type due to newline after `=` to reactive variable
97+
- [#234](https://github.com/sveltejs/svelte-eslint-parser/pull/234) [`5f237d2`](https://github.com/sveltejs/svelte-eslint-parser/commit/5f237d2015551596d3be36b6cbc4b17fb75f91e6) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: wrong AST and type due to newline after `=` to reactive variable
9898

9999
## 0.19.0
100100

101101
### Minor Changes
102102

103-
- [#230](https://github.com/ota-meshi/svelte-eslint-parser/pull/230) [`c67a6c1`](https://github.com/ota-meshi/svelte-eslint-parser/commit/c67a6c1ab4f340b9ec206ab737344602e587a2b2) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: change virtual code to provide correct type information for reactive statements
103+
- [#230](https://github.com/sveltejs/svelte-eslint-parser/pull/230) [`c67a6c1`](https://github.com/sveltejs/svelte-eslint-parser/commit/c67a6c1ab4f340b9ec206ab737344602e587a2b2) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: change virtual code to provide correct type information for reactive statements
104104

105105
## 0.18.4
106106

107107
### Patch Changes
108108

109-
- [#222](https://github.com/ota-meshi/svelte-eslint-parser/pull/222) [`df22f7f`](https://github.com/ota-meshi/svelte-eslint-parser/commit/df22f7f11669324f5947ac30dd7fd1560107c556) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: parsing error when `<style lang="scss" global>`
109+
- [#222](https://github.com/sveltejs/svelte-eslint-parser/pull/222) [`df22f7f`](https://github.com/sveltejs/svelte-eslint-parser/commit/df22f7f11669324f5947ac30dd7fd1560107c556) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: parsing error when `<style lang="scss" global>`
110110

111111
## 0.18.3
112112

113113
### Patch Changes
114114

115-
- [#220](https://github.com/ota-meshi/svelte-eslint-parser/pull/220) [`f19019b`](https://github.com/ota-meshi/svelte-eslint-parser/commit/f19019b0554750b730279d1f58ef46e8cac34d22) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: parsing error when `<script>` has attribute with empty value
115+
- [#220](https://github.com/sveltejs/svelte-eslint-parser/pull/220) [`f19019b`](https://github.com/sveltejs/svelte-eslint-parser/commit/f19019b0554750b730279d1f58ef46e8cac34d22) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: parsing error when `<script>` has attribute with empty value
116116

117117
## 0.18.2
118118

119119
### Patch Changes
120120

121-
- [#216](https://github.com/ota-meshi/svelte-eslint-parser/pull/216) [`095bf84`](https://github.com/ota-meshi/svelte-eslint-parser/commit/095bf84633cc853c74da2c6464bc931cf61553d7) Thanks [@ota-meshi](https://github.com/ota-meshi)! - Fix error in member expr on LHS of reactive statement with TS
121+
- [#216](https://github.com/sveltejs/svelte-eslint-parser/pull/216) [`095bf84`](https://github.com/sveltejs/svelte-eslint-parser/commit/095bf84633cc853c74da2c6464bc931cf61553d7) Thanks [@ota-meshi](https://github.com/ota-meshi)! - Fix error in member expr on LHS of reactive statement with TS
122122

123123
## 0.18.1
124124

125125
### Patch Changes
126126

127-
- [#204](https://github.com/ota-meshi/svelte-eslint-parser/pull/204) [`cc7dbbd`](https://github.com/ota-meshi/svelte-eslint-parser/commit/cc7dbbdac30348864ea7f8a4905667f07de916d3) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: wrong store access type information
127+
- [#204](https://github.com/sveltejs/svelte-eslint-parser/pull/204) [`cc7dbbd`](https://github.com/sveltejs/svelte-eslint-parser/commit/cc7dbbdac30348864ea7f8a4905667f07de916d3) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: wrong store access type information
128128

129-
- [#207](https://github.com/ota-meshi/svelte-eslint-parser/pull/207) [`159c69b`](https://github.com/ota-meshi/svelte-eslint-parser/commit/159c69bfa07910e595a1b375db69af26abdab49f) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: support for reactive vars type information
129+
- [#207](https://github.com/sveltejs/svelte-eslint-parser/pull/207) [`159c69b`](https://github.com/sveltejs/svelte-eslint-parser/commit/159c69bfa07910e595a1b375db69af26abdab49f) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: support for reactive vars type information

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# svelte-eslint-parser
22

33
[Svelte] parser for [ESLint].
4-
You can check it on [Online DEMO](https://ota-meshi.github.io/svelte-eslint-parser/playground).
4+
You can check it on [Online DEMO](https://sveltejs.github.io/svelte-eslint-parser/playground).
55

66
[![NPM license](https://img.shields.io/npm/l/svelte-eslint-parser.svg)](https://www.npmjs.com/package/svelte-eslint-parser)
77
[![NPM version](https://img.shields.io/npm/v/svelte-eslint-parser.svg)](https://www.npmjs.com/package/svelte-eslint-parser)
@@ -10,8 +10,8 @@ You can check it on [Online DEMO](https://ota-meshi.github.io/svelte-eslint-pars
1010
[![NPM downloads](https://img.shields.io/npm/dm/svelte-eslint-parser.svg)](http://www.npmtrends.com/svelte-eslint-parser)
1111
[![NPM downloads](https://img.shields.io/npm/dy/svelte-eslint-parser.svg)](http://www.npmtrends.com/svelte-eslint-parser)
1212
[![NPM downloads](https://img.shields.io/npm/dt/svelte-eslint-parser.svg)](http://www.npmtrends.com/svelte-eslint-parser)
13-
[![Build Status](https://github.com/ota-meshi/svelte-eslint-parser/workflows/CI/badge.svg?branch=main)](https://github.com/ota-meshi/svelte-eslint-parser/actions?query=workflow%3ACI)
14-
[![Coverage Status](https://coveralls.io/repos/github/ota-meshi/svelte-eslint-parser/badge.svg?branch=main)](https://coveralls.io/github/ota-meshi/svelte-eslint-parser?branch=main)
13+
[![Build Status](https://github.com/sveltejs/svelte-eslint-parser/workflows/CI/badge.svg?branch=main)](https://github.com/sveltejs/svelte-eslint-parser/actions?query=workflow%3ACI)
14+
[![Coverage Status](https://coveralls.io/repos/github/sveltejs/svelte-eslint-parser/badge.svg?branch=main)](https://coveralls.io/github/sveltejs/svelte-eslint-parser?branch=main)
1515

1616
## ❓ Why?
1717

@@ -21,16 +21,16 @@ The [svelte-eslint-parser] aims to make it easy to create your own rules for the
2121

2222
The [`eslint-plugin-svelte`] is an ESLint plugin that uses the [svelte-eslint-parser]. I have already [implemented some rules].
2323

24-
[`eslint-plugin-svelte`]: https://github.com/ota-meshi/eslint-plugin-svelte
25-
[implemented some rules]: https://ota-meshi.github.io/eslint-plugin-svelte/rules/
24+
[`eslint-plugin-svelte`]: https://github.com/sveltejs/eslint-plugin-svelte
25+
[implemented some rules]: https://sveltejs.github.io/eslint-plugin-svelte/rules/
2626

2727
### Benefits of Using AST
2828

2929
- We can create rules using the information contained in the AST.
3030
e.g.
31-
- [svelte/no-dupe-else-if-blocks](https://ota-meshi.github.io/eslint-plugin-svelte/rules/no-dupe-else-if-blocks/) rule
32-
- [svelte/no-at-html-tags](https://ota-meshi.github.io/eslint-plugin-svelte/rules/no-at-html-tags/) rule
33-
- [svelte/no-at-debug-tags](https://ota-meshi.github.io/eslint-plugin-svelte/rules/no-at-debug-tags/) rule
31+
- [svelte/no-dupe-else-if-blocks](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-dupe-else-if-blocks/) rule
32+
- [svelte/no-at-html-tags](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-at-html-tags/) rule
33+
- [svelte/no-at-debug-tags](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-at-debug-tags/) rule
3434
- Rules that use text work well.
3535
e.g.
3636
- [eol-last](https://eslint.org/docs/rules/eol-last) rule
@@ -39,7 +39,7 @@ The [`eslint-plugin-svelte`] is an ESLint plugin that uses the [svelte-eslint-pa
3939

4040
### ESLint Plugins Using svelte-eslint-parser
4141

42-
#### [eslint-plugin-svelte](https://ota-meshi.github.io/eslint-plugin-svelte/)
42+
#### [eslint-plugin-svelte](https://sveltejs.github.io/eslint-plugin-svelte/)
4343

4444
ESLint plugin for Svelte.
4545
It provides many unique check rules by using the template AST.
@@ -53,7 +53,7 @@ It provides rules to help internationalization your application created with Sve
5353

5454
The [svelte-eslint-parser] can not be used with the [eslint-plugin-svelte3].
5555

56-
[svelte-eslint-parser]: https://github.com/ota-meshi/svelte-eslint-parser
56+
[svelte-eslint-parser]: https://github.com/sveltejs/svelte-eslint-parser
5757

5858
## 💿 Installation
5959

@@ -206,8 +206,8 @@ Example **.vscode/settings.json**:
206206

207207
## Usage for Custom Rules / Plugins
208208

209-
- [AST.md](./docs/AST.md) is AST specification. You can check it on the [Online DEMO](https://ota-meshi.github.io/svelte-eslint-parser/).
210-
- The parser will generate its own [ScopeManager](https://eslint.org/docs/developer-guide/scope-manager-interface). You can check it on the [Online DEMO](https://ota-meshi.github.io/svelte-eslint-parser/scope).
209+
- [AST.md](./docs/AST.md) is AST specification. You can check it on the [Online DEMO](https://sveltejs.github.io/svelte-eslint-parser/).
210+
- The parser will generate its own [ScopeManager](https://eslint.org/docs/developer-guide/scope-manager-interface). You can check it on the [Online DEMO](https://sveltejs.github.io/svelte-eslint-parser/scope).
211211
- I have already [implemented some rules] in the [`eslint-plugin-svelte`]. The source code for these rules will be helpful to you.
212212

213213
## :beers: Contributing

0 commit comments

Comments
 (0)