Skip to content

Commit 1bf759d

Browse files
authored
chore: enforce LF line endings in the repository (#5092)
1 parent 28fc88f commit 1bf759d

File tree

8 files changed

+97
-87
lines changed

8 files changed

+97
-87
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf
Loading
+22-22
Loading
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import ExampleExternalComponent from './ExampleExternalComponent.vue'
2-
3-
export default ExampleExternalComponent
1+
import ExampleExternalComponent from './ExampleExternalComponent.vue'
2+
3+
export default ExampleExternalComponent
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
{
2-
"name": "example-external-component",
3-
"private": true,
4-
"version": "0.0.0",
5-
"main": "index.js"
6-
}
1+
{
2+
"name": "example-external-component",
3+
"private": true,
4+
"version": "0.0.0",
5+
"main": "index.js"
6+
}
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
<template>
2-
<ExampleExternalComponent />
3-
</template>
4-
5-
<script>
6-
import ExampleExternalComponent from 'example-external-component'
7-
8-
export default {
9-
components: {
10-
ExampleExternalComponent
11-
}
12-
}
13-
</script>
1+
<template>
2+
<ExampleExternalComponent />
3+
</template>
4+
5+
<script>
6+
import ExampleExternalComponent from 'example-external-component'
7+
8+
export default {
9+
components: {
10+
ExampleExternalComponent
11+
}
12+
}
13+
</script>
+22-22
Loading

0 commit comments

Comments
 (0)