Skip to content

Commit 80cbb0b

Browse files
committed
End of file line fixed
1 parent 0041ca5 commit 80cbb0b

8 files changed

+1022
-169
lines changed

.eslintrc.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
},
66
"extends": [
77
"eslint:recommended",
8+
"plugin:@typescript-eslint/recommended",
89
"prettier"
910
],
1011
"env": {
@@ -15,6 +16,7 @@
1516
"rules": {
1617
"no-console": 1,
1718
"indent": ["error", 2],
18-
"semi": ["error", "always"]
19+
"semi": ["error", "always"],
20+
"eol-last": ["error", "always"]
1921
}
2022
}

dataAccess/githubFetcher.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ export const githubFetcher: RepoFetcher = {
66
const response = await axios.get(`https://api.github.com/orgs/${org}/repos`);
77
return response.data;
88
}
9-
};
9+
};

0 commit comments

Comments
 (0)