Skip to content

Commit 4a8c75b

Browse files
committed
add editorconfig file
1 parent a95f5ab commit 4a8c75b

File tree

4 files changed

+34
-23
lines changed

4 files changed

+34
-23
lines changed

.editorconfig

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

App/components/ScoresScreen/ScoresScreen.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import React, { Component } from 'react'
22
import { Text, View } from 'react-native'
33

44
export default class ScoresScreen extends Component<Props> {
5-
render() {
6-
return (
7-
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
8-
<Text> Scores </Text>
9-
</View>
10-
);
11-
}
12-
}
5+
render() {
6+
return (
7+
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
8+
<Text> Scores </Text>
9+
</View>
10+
);
11+
}
12+
}

App/components/StandingsScreen/StandingsScreen.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import React, { Component } from 'react'
22
import { Text, View } from 'react-native'
33

44
export default class StandingsScreen extends Component<Props> {
5-
render() {
6-
return (
7-
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
8-
<Text> Standings </Text>
9-
</View>
10-
);
11-
}
12-
}
5+
render() {
6+
return (
7+
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
8+
<Text> Standings </Text>
9+
</View>
10+
);
11+
}
12+
}

App/components/TeamsScreen/TeamsScreen.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import React, { Component } from 'react'
22
import { Text, View } from 'react-native'
33

44
export default class TeamsScreen extends Component<Props> {
5-
render() {
6-
return (
7-
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
8-
<Text> Teams </Text>
9-
</View>
10-
);
11-
}
5+
render() {
6+
return (
7+
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
8+
<Text> Teams </Text>
9+
</View>
10+
);
11+
}
1212
}

0 commit comments

Comments
 (0)