-
-
Notifications
You must be signed in to change notification settings - Fork 6.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: enforce LF line endings in the repository (#5092)
- Loading branch information
1 parent
28fc88f
commit 1bf759d
Showing
8 changed files
with
97 additions
and
87 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto eol=lf |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions
6
packages/playground/ssr-vue/example-external-component/index.js
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import ExampleExternalComponent from './ExampleExternalComponent.vue' | ||
|
||
export default ExampleExternalComponent | ||
import ExampleExternalComponent from './ExampleExternalComponent.vue' | ||
|
||
export default ExampleExternalComponent |
12 changes: 6 additions & 6 deletions
12
packages/playground/ssr-vue/example-external-component/package.json
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "example-external-component", | ||
"private": true, | ||
"version": "0.0.0", | ||
"main": "index.js" | ||
} | ||
{ | ||
"name": "example-external-component", | ||
"private": true, | ||
"version": "0.0.0", | ||
"main": "index.js" | ||
} |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<template> | ||
<ExampleExternalComponent /> | ||
</template> | ||
|
||
<script> | ||
import ExampleExternalComponent from 'example-external-component' | ||
export default { | ||
components: { | ||
ExampleExternalComponent | ||
} | ||
} | ||
</script> | ||
<template> | ||
<ExampleExternalComponent /> | ||
</template> | ||
|
||
<script> | ||
import ExampleExternalComponent from 'example-external-component' | ||
export default { | ||
components: { | ||
ExampleExternalComponent | ||
} | ||
} | ||
</script> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.