chore: code formatting

This commit is contained in:
github-actions[bot]
2022-04-23 23:18:43 +00:00
parent 73cd43c18f
commit 4c98629bbc
130 changed files with 1839 additions and 1788 deletions

View File

@@ -1,5 +1,5 @@
/**Mocked data */
export default async function({ faker }, target, that, args) {
export default async function({faker}, target, that, args) {
return ({
status: 200,
url: "https://api.github.com/rate_limit",
@@ -10,14 +10,14 @@ export default async function({ faker }, target, that, args) {
},
data: {
resources: {
core: { limit: 5000, used: 0, remaining: 5000, reset: 0 },
search: { limit: 30, used: 0, remaining: 30, reset: 0 },
graphql: { limit: 5000, used: 0, remaining: 5000, reset: 0 },
integration_manifest: { limit: 5000, used: 0, remaining: 5000, reset: 0 },
source_import: { limit: 100, used: 0, remaining: 100, reset: 0 },
code_scanning_upload: { limit: 500, used: 0, remaining: 500, reset: 0 },
core: {limit: 5000, used: 0, remaining: 5000, reset: 0},
search: {limit: 30, used: 0, remaining: 30, reset: 0},
graphql: {limit: 5000, used: 0, remaining: 5000, reset: 0},
integration_manifest: {limit: 5000, used: 0, remaining: 5000, reset: 0},
source_import: {limit: 100, used: 0, remaining: 100, reset: 0},
code_scanning_upload: {limit: 500, used: 0, remaining: 500, reset: 0},
},
rate: { limit: 5000, used: 0, remaining: "MOCKED", reset: 0 },
rate: {limit: 5000, used: 0, remaining: "MOCKED", reset: 0},
},
})
}