Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
princerajpoot20 committed Aug 11, 2023
1 parent b44ee3d commit 5a005f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/controllers/help.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export const fetchCommands = async (user, repo) => {
const url = `https://api.github.com/repos/${user}/${repo}/contents/openapi.yaml`;

Check failure on line 8 in src/controllers/help.controller.ts

View workflow job for this annotation

GitHub Actions / Test NodeJS PR - ubuntu-latest

Expected indentation of 4 spaces but found 8
const response = await axios.get(url, {

Check failure on line 9 in src/controllers/help.controller.ts

View workflow job for this annotation

GitHub Actions / Test NodeJS PR - ubuntu-latest

Expected indentation of 4 spaces but found 8
headers: {

Check failure on line 10 in src/controllers/help.controller.ts

View workflow job for this annotation

GitHub Actions / Test NodeJS PR - ubuntu-latest

Expected indentation of 6 spaces but found 12
'Accept': 'application/vnd.github.v3.raw',
},
Accept: 'application/vnd.github.v3.raw'

Check failure on line 11 in src/controllers/help.controller.ts

View workflow job for this annotation

GitHub Actions / Test NodeJS PR - ubuntu-latest

Expected indentation of 8 spaces but found 16
}

Check failure on line 12 in src/controllers/help.controller.ts

View workflow job for this annotation

GitHub Actions / Test NodeJS PR - ubuntu-latest

Expected indentation of 6 spaces but found 12
});

Check failure on line 13 in src/controllers/help.controller.ts

View workflow job for this annotation

GitHub Actions / Test NodeJS PR - ubuntu-latest

Expected indentation of 4 spaces but found 8
return yaml.load(response.data);

Check failure on line 14 in src/controllers/help.controller.ts

View workflow job for this annotation

GitHub Actions / Test NodeJS PR - ubuntu-latest

Expected indentation of 4 spaces but found 8
} catch (error) {

Check failure on line 15 in src/controllers/help.controller.ts

View workflow job for this annotation

GitHub Actions / Test NodeJS PR - ubuntu-latest

Expected indentation of 2 spaces but found 4
Expand Down

0 comments on commit 5a005f6

Please sign in to comment.