-
-
Notifications
You must be signed in to change notification settings - Fork 669
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix incompatibility with typescript-eslint v6 in
vue/script-indent
…
…rule (#2256)
- Loading branch information
Showing
14 changed files
with
69 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ jobs: | |
- run: | ||
name: Install eslint@6 | ||
command: | | ||
npm install --save-exact [email protected] | ||
npm install --save-exact [email protected] @typescript-eslint/parser@5 | ||
- run: | ||
name: Install dependencies | ||
command: npm install | ||
|
@@ -62,7 +62,7 @@ jobs: | |
- run: | ||
name: Install eslint@7 | ||
command: | | ||
npm install eslint@7 | ||
npm install eslint@7 @typescript-eslint/parser@5 | ||
- run: | ||
name: Install dependencies | ||
command: npm install | ||
|
@@ -88,9 +88,23 @@ jobs: | |
name: Test | ||
command: npm test | ||
node-v14: | ||
<<: *node-base | ||
docker: | ||
- image: node:14 | ||
steps: | ||
- run: | ||
name: Versions | ||
command: npm version | ||
- checkout | ||
- run: | ||
name: Install @typescript-eslint/parser@5 | ||
command: | | ||
npm install @typescript-eslint/parser@5 --save-exact | ||
- run: | ||
name: Install dependencies | ||
command: npm install | ||
- run: | ||
name: Test | ||
command: npm test | ||
node-v16: | ||
<<: *node-base | ||
docker: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,12 @@ | |
<script lang="ts"> | ||
class | ||
Foo | ||
extends | ||
Bar | ||
implements | ||
Baz1 | ||
, | ||
Baz2 | ||
extends | ||
Bar | ||
{ | ||
prop:string | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,6 @@ class | |
boolean | ||
= | ||
false | ||
) | ||
) {} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters