-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: resolve Super-linter errors throughout the codebase
- Loading branch information
Showing
10 changed files
with
219 additions
and
211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"extends": "stylelint-config-standard", | ||
"customSyntax": "postcss-scss" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,5 +28,6 @@ jobs: | |
- name: Super-linter | ||
uses: super-linter/[email protected] # x-release-please-version | ||
env: | ||
VALIDATE_SCSS: true | ||
# To report GitHub Actions status checks | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<template> | ||
<v-row align="center"> | ||
<v-col :cols="(12 - barSize) / 2"> | ||
<v-divider /> | ||
</v-col> | ||
<v-col :cols="barSize"> | ||
<v-btn @click="searchCatalogue" append-icon="mdi-cloud-search" color="#003DA5" variant="flat" size="large" | ||
block :disabled="!catalogueBoolean" :loading="loadingBoolean">Browse the Catalogue</v-btn> | ||
</v-col> | ||
<v-col :cols="(12 - barSize) / 2"> | ||
<v-divider /> | ||
</v-col> | ||
</v-row> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'SearchBar', | ||
props: { | ||
searchCatalogue: Function, | ||
catalogueBoolean: Boolean, | ||
loadingBoolean: Boolean, | ||
barSize: Number | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
export const HTTP_CODES = { | ||
200: 'OK', | ||
201: 'Created', | ||
202: 'Accepted', | ||
204: 'No Content', | ||
400: 'Bad Request', | ||
401: 'Unauthorized', | ||
403: 'Forbidden', | ||
404: 'Not Found', | ||
405: 'Method Not Allowed', | ||
406: 'Not Acceptable', | ||
409: 'Conflict', | ||
500: 'Internal Server Error', | ||
501: 'Not Implemented', | ||
503: 'Service Unavailable', | ||
504: 'Gateway Timeout' | ||
}; | ||
200: "OK", | ||
201: "Created", | ||
202: "Accepted", | ||
204: "No Content", | ||
400: "Bad Request", | ||
401: "Unauthorized", | ||
403: "Forbidden", | ||
404: "Not Found", | ||
405: "Method Not Allowed", | ||
406: "Not Acceptable", | ||
409: "Conflict", | ||
500: "Internal Server Error", | ||
501: "Not Implemented", | ||
503: "Service Unavailable", | ||
504: "Gateway Timeout", | ||
}; |
Oops, something went wrong.