Skip to content

Commit f54b1e6

Browse files
committed
End of file line added
1 parent 520459f commit f54b1e6

7 files changed

+7
-5
lines changed

.eslintrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
"semi": ["error", "always"],
2020
"eol-last": ["error", "always"]
2121
}
22-
}
22+
}

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
node_modules
2-
dist
2+
dist

app.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ app.use(repositoriesRouter);
88

99
app.listen(port);
1010

11-
export default app;
11+
export default app;

controllers/repositoriesController.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
import RepoFetcher from '../models/repoFetcherModel';
23
import { popularRepos, lastUpdatedRepos, totalStars , topRepos, listAlphabetically} from '../services/repositoriesService';
34

dataAccess/githubFetcher.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
import axios from 'axios';
23
import RepoFetcher from '../models/repoFetcherModel';
34

nodemon.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
"ext": ".ts,.js",
44
"ignore": [],
55
"exec": "npx ts-node --esm ./app.ts"
6-
}
6+
}

routes/repositoriesRouter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ router.get('/:org/listAlphabetically', async (req: Request, res: Response) => {
3939
res.json({ listAlphabetically });
4040
});
4141

42-
export default router;
42+
export default router;

0 commit comments

Comments
 (0)