mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ACS-6071] fix jsdoc warnings and errors (#8948)
* fix content docs * fix extensions docs * fix insights docs * [ci:force] fix jsdoc errors and warnings * enable jsdoc linter * [ci:force] fix demo shell jsdoc * [ci:force] fix e2e typings * fix typo * fix typo
This commit is contained in:
@@ -25,7 +25,10 @@ import { GovernanceCheckPlugin } from './plugins/governance-check-plugin';
|
||||
|
||||
let pluginEnv: CheckEnv;
|
||||
|
||||
export default async function main(_args: string[]) {
|
||||
/**
|
||||
* Check environment plugin
|
||||
*/
|
||||
export default async function main() {
|
||||
program
|
||||
.version('0.1.0')
|
||||
.option('--host [type]', 'Remote environment host')
|
||||
@@ -53,6 +56,9 @@ export default async function main(_args: string[]) {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Check PS plugin
|
||||
*/
|
||||
async function checkProcessServicesPlugin() {
|
||||
const processServiceCheckPlugin = new ProcessServiceCheckPlugin(
|
||||
{
|
||||
@@ -64,6 +70,9 @@ async function checkProcessServicesPlugin() {
|
||||
await processServiceCheckPlugin.checkProcessServicesPlugin();
|
||||
}
|
||||
|
||||
/**
|
||||
* Check APA plugin
|
||||
*/
|
||||
async function checkProcessAutomationPlugin() {
|
||||
const processAutomationCheckPlugin = new ProcessAutomationCheckPlugin(
|
||||
{
|
||||
@@ -77,6 +86,9 @@ async function checkProcessAutomationPlugin() {
|
||||
await processAutomationCheckPlugin.checkProcessAutomationPlugin();
|
||||
}
|
||||
|
||||
/**
|
||||
* Check AGS plugin
|
||||
*/
|
||||
async function checkGovernancePlugin() {
|
||||
const governancePluginCheck = new GovernanceCheckPlugin(
|
||||
{
|
||||
|
Reference in New Issue
Block a user