-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated frontend eslint config and addressed all errors.
- Loading branch information
weskubo-cgi
authored and
weskubo-cgi
committed
Jul 30, 2024
1 parent
2608fca
commit 295a9b5
Showing
27 changed files
with
88 additions
and
239 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
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 |
---|---|---|
|
@@ -42,6 +42,12 @@ With NPM: | |
npm run lint | ||
``` | ||
|
||
To fix issues: | ||
|
||
```sh | ||
npm run lint:fix | ||
``` | ||
|
||
### Docker | ||
|
||
#### Build | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,3 +1,3 @@ | ||
// eslint-disable-next-line | ||
const StaticConfig = config | ||
export default StaticConfig | ||
export default StaticConfig |
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 |
---|---|---|
|
@@ -51,7 +51,7 @@ export default { | |
}, | ||
closeDialog() { | ||
this.$emit('close') | ||
} | ||
}, | ||
}, | ||
} | ||
</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
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,21 +1,18 @@ | ||
export const ALERT_NOTIFICATION_TYPES = Object.freeze( | ||
{ | ||
/** | ||
* ERROR value type. | ||
*/ | ||
ERROR: 'error', | ||
/** | ||
* WARN value type. | ||
*/ | ||
WARN: 'warning', | ||
/** | ||
* SUCCESS value type. | ||
*/ | ||
SUCCESS: 'success', | ||
/** | ||
* INFO value type. | ||
*/ | ||
INFO: 'primary' | ||
} | ||
); | ||
|
||
export const ALERT_NOTIFICATION_TYPES = Object.freeze({ | ||
/** | ||
* ERROR value type. | ||
*/ | ||
ERROR: 'error', | ||
/** | ||
* WARN value type. | ||
*/ | ||
WARN: 'warning', | ||
/** | ||
* SUCCESS value type. | ||
*/ | ||
SUCCESS: 'success', | ||
/** | ||
* INFO value type. | ||
*/ | ||
INFO: 'primary', | ||
}) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.