From 13294e1e26c96300f7af8c005702cc8e1ef08ece Mon Sep 17 00:00:00 2001 From: Sergio Betanzos Date: Mon, 12 Jul 2021 14:22:01 +0200 Subject: [PATCH] F OpenNebula/one#5422: Add doc to client/containers --- .../DialogInfo/dialog.js | 1 + .../ApplicationsInstances/DialogInfo/index.js | 1 + .../ApplicationsInstances/DialogInfo/tiers.js | 1 + .../containers/ApplicationsInstances/index.js | 1 + .../Create/Steps/BasicConfiguration/index.js | 1 + .../Form/Create/Steps/Clusters/index.js | 1 + .../Form/Create/Steps/Networking/index.js | 1 + .../Create/Steps/Tiers/Flow/useFlowGraph.js | 1 + .../Tiers/Steps/BasicConfiguration/index.js | 1 + .../Steps/Tiers/Steps/Networks/index.js | 1 + .../Steps/Tiers/Steps/Policies/index.js | 1 + .../Tiers/Steps/Policies/schemas/fields.js | 1 + .../Tiers/Steps/Policies/schemas/types.js | 1 + .../Steps/Tiers/Steps/Template/List/Docker.js | 1 + .../Tiers/Steps/Template/List/MarketApps.js | 1 + .../Tiers/Steps/Template/List/Templates.js | 1 + .../Steps/Tiers/Steps/Template/index.js | 1 + .../Form/Create/Steps/Tiers/Steps/index.js | 1 + .../Form/Create/Steps/Tiers/index.js | 1 + .../Form/Create/Steps/index.js | 1 + .../Form/Create/index.js | 1 + .../Deploy/Steps/BasicConfiguration/index.js | 1 + .../Form/Deploy/Steps/Networking/index.js | 1 + .../Form/Deploy/Steps/Tiers/index.js | 1 + .../Form/Deploy/Steps/Tiers/schema.js | 1 + .../Form/Deploy/Steps/index.js | 1 + .../Form/Deploy/index.js | 1 + .../containers/ApplicationsTemplates/index.js | 1 + .../src/client/containers/Clusters/index.js | 1 + .../containers/Dashboard/Provision/index.js | 1 + .../containers/Dashboard/Sunstone/index.js | 1 + .../src/client/containers/Datastores/index.js | 1 + .../src/client/containers/Groups/index.js | 1 + .../src/client/containers/Hosts/index.js | 1 + .../src/client/containers/Images/index.js | 1 + .../src/client/containers/Login/Copyright.js | 33 ------------------- .../src/client/containers/Login/Form.js | 1 + .../src/client/containers/Login/index.js | 1 + .../src/client/containers/Login/schema.js | 1 + .../containers/MarketplaceApps/index.js | 1 + .../client/containers/Marketplaces/index.js | 1 + .../Create/Steps/BasicConfiguration/index.js | 1 + .../Create/Steps/BasicConfiguration/schema.js | 1 + .../Form/Create/Steps/Connection/index.js | 1 + .../Form/Create/Steps/Connection/schema.js | 1 + .../Form/Create/Steps/Template/index.js | 1 + .../Providers/Form/Create/Steps/index.js | 1 + .../containers/Providers/Form/Create/index.js | 1 + .../src/client/containers/Providers/index.js | 1 + .../containers/Provisions/DialogInfo/index.js | 1 + .../Create/Steps/BasicConfiguration/index.js | 1 + .../Form/Create/Steps/Inputs/index.js | 1 + .../Form/Create/Steps/Inputs/schema.js | 1 + .../Form/Create/Steps/Provider/index.js | 1 + .../Form/Create/Steps/Template/index.js | 1 + .../Provisions/Form/Create/Steps/index.js | 1 + .../Provisions/Form/Create/index.js | 1 + .../src/client/containers/Provisions/index.js | 1 + .../src/client/containers/Settings/index.js | 1 + .../src/client/containers/Users/index.js | 1 + .../containers/VNetworkTemplates/index.js | 1 + .../containers/VirtualMachines/index.js | 1 + .../containers/VirtualNetworks/index.js | 1 + .../client/containers/VirtualRouters/index.js | 1 + .../client/containers/VmTemplates/index.js | 1 + .../src/client/containers/Zones/index.js | 1 + 66 files changed, 65 insertions(+), 33 deletions(-) delete mode 100644 src/fireedge/src/client/containers/Login/Copyright.js diff --git a/src/fireedge/src/client/containers/ApplicationsInstances/DialogInfo/dialog.js b/src/fireedge/src/client/containers/ApplicationsInstances/DialogInfo/dialog.js index 0ffef26b34..aac48943bf 100644 --- a/src/fireedge/src/client/containers/ApplicationsInstances/DialogInfo/dialog.js +++ b/src/fireedge/src/client/containers/ApplicationsInstances/DialogInfo/dialog.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import PropTypes from 'prop-types' diff --git a/src/fireedge/src/client/containers/ApplicationsInstances/DialogInfo/index.js b/src/fireedge/src/client/containers/ApplicationsInstances/DialogInfo/index.js index 95a5182aea..94a3f987cc 100644 --- a/src/fireedge/src/client/containers/ApplicationsInstances/DialogInfo/index.js +++ b/src/fireedge/src/client/containers/ApplicationsInstances/DialogInfo/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useState, useMemo } from 'react' import PropTypes from 'prop-types' diff --git a/src/fireedge/src/client/containers/ApplicationsInstances/DialogInfo/tiers.js b/src/fireedge/src/client/containers/ApplicationsInstances/DialogInfo/tiers.js index 668aa23fb5..9605cb547c 100644 --- a/src/fireedge/src/client/containers/ApplicationsInstances/DialogInfo/tiers.js +++ b/src/fireedge/src/client/containers/ApplicationsInstances/DialogInfo/tiers.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import PropTypes from 'prop-types' diff --git a/src/fireedge/src/client/containers/ApplicationsInstances/index.js b/src/fireedge/src/client/containers/ApplicationsInstances/index.js index eb3ed38449..36285f05e8 100644 --- a/src/fireedge/src/client/containers/ApplicationsInstances/index.js +++ b/src/fireedge/src/client/containers/ApplicationsInstances/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useEffect, useState } from 'react' import { Container, Box } from '@material-ui/core' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/BasicConfiguration/index.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/BasicConfiguration/index.js index 76cea5b758..7665a0f434 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/BasicConfiguration/index.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/BasicConfiguration/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useCallback } from 'react' import FormWithSchema from 'client/components/Forms/FormWithSchema' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Clusters/index.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Clusters/index.js index 2dea89941a..6ae62d8ddb 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Clusters/index.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Clusters/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useEffect, useCallback } from 'react' import { useListForm, useFetch } from 'client/hooks' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Networking/index.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Networking/index.js index feff28953b..04f9557966 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Networking/index.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Networking/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useState, useEffect, useCallback } from 'react' import { useWatch } from 'react-hook-form' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Flow/useFlowGraph.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Flow/useFlowGraph.js index e922ea452b..d2c6c1c4f5 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Flow/useFlowGraph.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Flow/useFlowGraph.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import { useCallback, useState } from 'react' import { diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/BasicConfiguration/index.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/BasicConfiguration/index.js index 2a355ef2af..67d48dfa2b 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/BasicConfiguration/index.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/BasicConfiguration/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useCallback } from 'react' import FormWithSchema from 'client/components/Forms/FormWithSchema' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Networks/index.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Networks/index.js index ceac619cd7..f4375fc187 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Networks/index.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Networks/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useCallback, useContext } from 'react' import { useListForm } from 'client/hooks' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Policies/index.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Policies/index.js index 2c091ac7f3..8dae28d1ce 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Policies/index.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Policies/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useCallback, useState, useMemo } from 'react' import { useFormContext } from 'react-hook-form' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Policies/schemas/fields.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Policies/schemas/fields.js index f03a118ccb..9d6ca10c03 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Policies/schemas/fields.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Policies/schemas/fields.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as yup from 'yup' import { v4 as uuidv4 } from 'uuid' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Policies/schemas/types.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Policies/schemas/types.js index d9369ce36e..d9011c1da2 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Policies/schemas/types.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Policies/schemas/types.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ export const TYPES_POLICY = [ { text: 'Change', value: 'CHANGE', min: false }, { text: 'Cardinality', value: 'CARDINALITY', min: false }, diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Template/List/Docker.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Template/List/Docker.js index 9ee8734a95..55553c8a06 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Template/List/Docker.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Template/List/Docker.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import PropTypes from 'prop-types' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Template/List/MarketApps.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Template/List/MarketApps.js index 672d432e69..7cbe40a819 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Template/List/MarketApps.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Template/List/MarketApps.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useEffect } from 'react' import PropTypes from 'prop-types' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Template/List/Templates.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Template/List/Templates.js index 2637350f6d..11ce22d79a 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Template/List/Templates.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Template/List/Templates.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useEffect } from 'react' import PropTypes from 'prop-types' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Template/index.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Template/index.js index 643cfcd303..59d4b3a312 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Template/index.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/Template/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useCallback, useState, useEffect, useMemo } from 'react' import { makeStyles, IconButton, Button, Fade } from '@material-ui/core' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/index.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/index.js index 755caab4aa..61ac7f78a4 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/index.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/Steps/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as yup from 'yup' import { v4 as uuidv4 } from 'uuid' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/index.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/index.js index 24d8382de9..4f07819806 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/index.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/Tiers/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useEffect, useState, diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/index.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/index.js index 7290bb4ea9..dfce24c1c0 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/index.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/Steps/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as yup from 'yup' import BasicConfiguration from './BasicConfiguration' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/index.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/index.js index 88ef0ebd2f..6d62a7f399 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/index.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Create/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useEffect } from 'react' import { Redirect, useHistory, useParams } from 'react-router-dom' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/BasicConfiguration/index.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/BasicConfiguration/index.js index 76cea5b758..7665a0f434 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/BasicConfiguration/index.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/BasicConfiguration/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useCallback } from 'react' import FormWithSchema from 'client/components/Forms/FormWithSchema' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/Networking/index.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/Networking/index.js index 26babdbde4..c1a42ec03e 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/Networking/index.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/Networking/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useEffect, useCallback } from 'react' import { Divider, Paper, Typography } from '@material-ui/core' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/Tiers/index.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/Tiers/index.js index f70c7ef6c5..41a0222bfe 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/Tiers/index.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/Tiers/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useMemo, useCallback, useState } from 'react' import { useFormContext } from 'react-hook-form' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/Tiers/schema.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/Tiers/schema.js index b44da322df..37b80f006d 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/Tiers/schema.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/Tiers/schema.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as yup from 'yup' import { v4 as uuidv4 } from 'uuid' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/index.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/index.js index cc80344924..2b523491f8 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/index.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/Steps/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as yup from 'yup' import BasicConfiguration from './BasicConfiguration' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/index.js b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/index.js index 5e56167415..e654d6e2c7 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/index.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/Form/Deploy/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useEffect, useMemo, useState } from 'react' import PropTypes from 'prop-types' diff --git a/src/fireedge/src/client/containers/ApplicationsTemplates/index.js b/src/fireedge/src/client/containers/ApplicationsTemplates/index.js index 5b17a70cc9..fcb9ab1b27 100644 --- a/src/fireedge/src/client/containers/ApplicationsTemplates/index.js +++ b/src/fireedge/src/client/containers/ApplicationsTemplates/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useEffect, useState } from 'react' import { useHistory } from 'react-router-dom' diff --git a/src/fireedge/src/client/containers/Clusters/index.js b/src/fireedge/src/client/containers/Clusters/index.js index e7004b0fb1..72f8c721c1 100644 --- a/src/fireedge/src/client/containers/Clusters/index.js +++ b/src/fireedge/src/client/containers/Clusters/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import { Container, Box } from '@material-ui/core' diff --git a/src/fireedge/src/client/containers/Dashboard/Provision/index.js b/src/fireedge/src/client/containers/Dashboard/Provision/index.js index 1ff462a4d8..79a41c8db2 100644 --- a/src/fireedge/src/client/containers/Dashboard/Provision/index.js +++ b/src/fireedge/src/client/containers/Dashboard/Provision/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import clsx from 'clsx' diff --git a/src/fireedge/src/client/containers/Dashboard/Sunstone/index.js b/src/fireedge/src/client/containers/Dashboard/Sunstone/index.js index 94157f204f..ff791bf3dc 100644 --- a/src/fireedge/src/client/containers/Dashboard/Sunstone/index.js +++ b/src/fireedge/src/client/containers/Dashboard/Sunstone/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import clsx from 'clsx' diff --git a/src/fireedge/src/client/containers/Datastores/index.js b/src/fireedge/src/client/containers/Datastores/index.js index e92a296f8e..5f21f8ff86 100644 --- a/src/fireedge/src/client/containers/Datastores/index.js +++ b/src/fireedge/src/client/containers/Datastores/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import { Container, Box } from '@material-ui/core' diff --git a/src/fireedge/src/client/containers/Groups/index.js b/src/fireedge/src/client/containers/Groups/index.js index e96557e9b8..ceabd30bc6 100644 --- a/src/fireedge/src/client/containers/Groups/index.js +++ b/src/fireedge/src/client/containers/Groups/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import { Container, Box } from '@material-ui/core' diff --git a/src/fireedge/src/client/containers/Hosts/index.js b/src/fireedge/src/client/containers/Hosts/index.js index 0713b786d6..9885081254 100644 --- a/src/fireedge/src/client/containers/Hosts/index.js +++ b/src/fireedge/src/client/containers/Hosts/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import { Container, Box } from '@material-ui/core' diff --git a/src/fireedge/src/client/containers/Images/index.js b/src/fireedge/src/client/containers/Images/index.js index 8101805ff3..7ec0660112 100644 --- a/src/fireedge/src/client/containers/Images/index.js +++ b/src/fireedge/src/client/containers/Images/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import { Container, Box } from '@material-ui/core' diff --git a/src/fireedge/src/client/containers/Login/Copyright.js b/src/fireedge/src/client/containers/Login/Copyright.js deleted file mode 100644 index 0a5f067284..0000000000 --- a/src/fireedge/src/client/containers/Login/Copyright.js +++ /dev/null @@ -1,33 +0,0 @@ -/* ------------------------------------------------------------------------- * - * Copyright 2002-2021, OpenNebula Project, OpenNebula Systems * - * * - * Licensed under the Apache License, Version 2.0 (the "License"); you may * - * not use this file except in compliance with the License. You may obtain * - * a copy of the License at * - * * - * http://www.apache.org/licenses/LICENSE-2.0 * - * * - * Unless required by applicable law or agreed to in writing, software * - * distributed under the License is distributed on an "AS IS" BASIS, * - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * - * See the License for the specific language governing permissions and * - * limitations under the License. * - * ------------------------------------------------------------------------- */ -import * as React from 'react' -import { Typography, Link } from '@material-ui/core' - -const Copyright = () => { - const year = new Date().getFullYear() - - return ( - - {'Copyright © '} - - OpenNebula.io - - {` ${year}. `} - - ) -} - -export default Copyright diff --git a/src/fireedge/src/client/containers/Login/Form.js b/src/fireedge/src/client/containers/Login/Form.js index 00c04caea2..cb7b8d43e0 100644 --- a/src/fireedge/src/client/containers/Login/Form.js +++ b/src/fireedge/src/client/containers/Login/Form.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useEffect } from 'react' import PropTypes from 'prop-types' diff --git a/src/fireedge/src/client/containers/Login/index.js b/src/fireedge/src/client/containers/Login/index.js index b7f0e3ee75..8abac0f50c 100644 --- a/src/fireedge/src/client/containers/Login/index.js +++ b/src/fireedge/src/client/containers/Login/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useMemo, useState } from 'react' import { Paper, Box, Container, LinearProgress, useMediaQuery } from '@material-ui/core' diff --git a/src/fireedge/src/client/containers/Login/schema.js b/src/fireedge/src/client/containers/Login/schema.js index 5371228817..3a6bed3e33 100644 --- a/src/fireedge/src/client/containers/Login/schema.js +++ b/src/fireedge/src/client/containers/Login/schema.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import { VerifiedBadge as SelectIcon } from 'iconoir-react' diff --git a/src/fireedge/src/client/containers/MarketplaceApps/index.js b/src/fireedge/src/client/containers/MarketplaceApps/index.js index a1158ef00a..bd0f14b664 100644 --- a/src/fireedge/src/client/containers/MarketplaceApps/index.js +++ b/src/fireedge/src/client/containers/MarketplaceApps/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import { Container, Box } from '@material-ui/core' diff --git a/src/fireedge/src/client/containers/Marketplaces/index.js b/src/fireedge/src/client/containers/Marketplaces/index.js index 7ad30f2d2f..0201fdda6b 100644 --- a/src/fireedge/src/client/containers/Marketplaces/index.js +++ b/src/fireedge/src/client/containers/Marketplaces/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import { Container, Box } from '@material-ui/core' diff --git a/src/fireedge/src/client/containers/Providers/Form/Create/Steps/BasicConfiguration/index.js b/src/fireedge/src/client/containers/Providers/Form/Create/Steps/BasicConfiguration/index.js index acf4e8364e..7c0029fdf5 100644 --- a/src/fireedge/src/client/containers/Providers/Form/Create/Steps/BasicConfiguration/index.js +++ b/src/fireedge/src/client/containers/Providers/Form/Create/Steps/BasicConfiguration/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useCallback } from 'react' import FormWithSchema from 'client/components/Forms/FormWithSchema' diff --git a/src/fireedge/src/client/containers/Providers/Form/Create/Steps/BasicConfiguration/schema.js b/src/fireedge/src/client/containers/Providers/Form/Create/Steps/BasicConfiguration/schema.js index 630d589d3e..5ba5ed5e4d 100644 --- a/src/fireedge/src/client/containers/Providers/Form/Create/Steps/BasicConfiguration/schema.js +++ b/src/fireedge/src/client/containers/Providers/Form/Create/Steps/BasicConfiguration/schema.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as yup from 'yup' import { INPUT_TYPES } from 'client/constants' import { getValidationFromFields } from 'client/utils' diff --git a/src/fireedge/src/client/containers/Providers/Form/Create/Steps/Connection/index.js b/src/fireedge/src/client/containers/Providers/Form/Create/Steps/Connection/index.js index a8d171a33c..16f3dca064 100644 --- a/src/fireedge/src/client/containers/Providers/Form/Create/Steps/Connection/index.js +++ b/src/fireedge/src/client/containers/Providers/Form/Create/Steps/Connection/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useCallback, useEffect, useState } from 'react' import { useFormContext } from 'react-hook-form' diff --git a/src/fireedge/src/client/containers/Providers/Form/Create/Steps/Connection/schema.js b/src/fireedge/src/client/containers/Providers/Form/Create/Steps/Connection/schema.js index d13f76b59c..63748cd7c6 100644 --- a/src/fireedge/src/client/containers/Providers/Form/Create/Steps/Connection/schema.js +++ b/src/fireedge/src/client/containers/Providers/Form/Create/Steps/Connection/schema.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as yup from 'yup' import { INPUT_TYPES, CREDENTIALS_FILE } from 'client/constants' import { getValidationFromFields, isBase64, prettyBytes } from 'client/utils' diff --git a/src/fireedge/src/client/containers/Providers/Form/Create/Steps/Template/index.js b/src/fireedge/src/client/containers/Providers/Form/Create/Steps/Template/index.js index 00370a0b72..27fbaa1036 100644 --- a/src/fireedge/src/client/containers/Providers/Form/Create/Steps/Template/index.js +++ b/src/fireedge/src/client/containers/Providers/Form/Create/Steps/Template/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useCallback, useEffect, useMemo } from 'react' import { Divider, Select, Breadcrumbs, InputLabel, FormControl } from '@material-ui/core' import { NavArrowRight } from 'iconoir-react' diff --git a/src/fireedge/src/client/containers/Providers/Form/Create/Steps/index.js b/src/fireedge/src/client/containers/Providers/Form/Create/Steps/index.js index 722b9017d9..5774cf0687 100644 --- a/src/fireedge/src/client/containers/Providers/Form/Create/Steps/index.js +++ b/src/fireedge/src/client/containers/Providers/Form/Create/Steps/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as yup from 'yup' import Template from './Template' diff --git a/src/fireedge/src/client/containers/Providers/Form/Create/index.js b/src/fireedge/src/client/containers/Providers/Form/Create/index.js index 6b7fa44f9c..3d6efda0e3 100644 --- a/src/fireedge/src/client/containers/Providers/Form/Create/index.js +++ b/src/fireedge/src/client/containers/Providers/Form/Create/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useEffect } from 'react' import { Redirect, useHistory, useParams } from 'react-router' diff --git a/src/fireedge/src/client/containers/Providers/index.js b/src/fireedge/src/client/containers/Providers/index.js index 04773161e8..d03bfb4c12 100644 --- a/src/fireedge/src/client/containers/Providers/index.js +++ b/src/fireedge/src/client/containers/Providers/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useState, useEffect } from 'react' import { useHistory } from 'react-router-dom' diff --git a/src/fireedge/src/client/containers/Provisions/DialogInfo/index.js b/src/fireedge/src/client/containers/Provisions/DialogInfo/index.js index 1534634a0d..9c3d9da8bd 100644 --- a/src/fireedge/src/client/containers/Provisions/DialogInfo/index.js +++ b/src/fireedge/src/client/containers/Provisions/DialogInfo/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useState, useMemo } from 'react' import PropTypes from 'prop-types' diff --git a/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/BasicConfiguration/index.js b/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/BasicConfiguration/index.js index df7fd5e2d3..a2f9cee23f 100644 --- a/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/BasicConfiguration/index.js +++ b/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/BasicConfiguration/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useCallback } from 'react' import FormWithSchema from 'client/components/Forms/FormWithSchema' diff --git a/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/Inputs/index.js b/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/Inputs/index.js index 94cd86d0ac..0ce23f65e2 100644 --- a/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/Inputs/index.js +++ b/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/Inputs/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useCallback, useEffect, useState } from 'react' import { useFormContext } from 'react-hook-form' diff --git a/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/Inputs/schema.js b/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/Inputs/schema.js index aa6d4465b9..644dbc72eb 100644 --- a/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/Inputs/schema.js +++ b/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/Inputs/schema.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as yup from 'yup' import { getValidationFromFields, schemaUserInput } from 'client/utils' diff --git a/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/Provider/index.js b/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/Provider/index.js index a72f230591..c930b6c898 100644 --- a/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/Provider/index.js +++ b/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/Provider/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useCallback } from 'react' import { useWatch } from 'react-hook-form' diff --git a/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/Template/index.js b/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/Template/index.js index 745de80e6a..5fb893ddc0 100644 --- a/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/Template/index.js +++ b/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/Template/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useCallback, useEffect, useMemo } from 'react' import { Divider, Select, Breadcrumbs, InputLabel, FormControl } from '@material-ui/core' import { NavArrowRight } from 'iconoir-react' diff --git a/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/index.js b/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/index.js index 3e7155ad7e..52dec37c82 100644 --- a/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/index.js +++ b/src/fireedge/src/client/containers/Provisions/Form/Create/Steps/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as yup from 'yup' import Template from './Template' diff --git a/src/fireedge/src/client/containers/Provisions/Form/Create/index.js b/src/fireedge/src/client/containers/Provisions/Form/Create/index.js index 138a947522..2d9c81fc16 100644 --- a/src/fireedge/src/client/containers/Provisions/Form/Create/index.js +++ b/src/fireedge/src/client/containers/Provisions/Form/Create/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useState, useEffect } from 'react' import { Redirect, useHistory } from 'react-router' diff --git a/src/fireedge/src/client/containers/Provisions/index.js b/src/fireedge/src/client/containers/Provisions/index.js index 9bf88f41fe..8635497fca 100644 --- a/src/fireedge/src/client/containers/Provisions/index.js +++ b/src/fireedge/src/client/containers/Provisions/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import React, { useState, useEffect, createElement } from 'react' import { useHistory } from 'react-router-dom' diff --git a/src/fireedge/src/client/containers/Settings/index.js b/src/fireedge/src/client/containers/Settings/index.js index ead16ec6ef..4011e77635 100644 --- a/src/fireedge/src/client/containers/Settings/index.js +++ b/src/fireedge/src/client/containers/Settings/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import { makeStyles, Container, Paper, Box, Typography } from '@material-ui/core' diff --git a/src/fireedge/src/client/containers/Users/index.js b/src/fireedge/src/client/containers/Users/index.js index 4af2fc8c03..7a023d0795 100644 --- a/src/fireedge/src/client/containers/Users/index.js +++ b/src/fireedge/src/client/containers/Users/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import { Container, Box } from '@material-ui/core' diff --git a/src/fireedge/src/client/containers/VNetworkTemplates/index.js b/src/fireedge/src/client/containers/VNetworkTemplates/index.js index ad857a6809..f5c84cc380 100644 --- a/src/fireedge/src/client/containers/VNetworkTemplates/index.js +++ b/src/fireedge/src/client/containers/VNetworkTemplates/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import { Container, Box } from '@material-ui/core' diff --git a/src/fireedge/src/client/containers/VirtualMachines/index.js b/src/fireedge/src/client/containers/VirtualMachines/index.js index 141746eff6..4d6f148de4 100644 --- a/src/fireedge/src/client/containers/VirtualMachines/index.js +++ b/src/fireedge/src/client/containers/VirtualMachines/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import { Container, Box } from '@material-ui/core' diff --git a/src/fireedge/src/client/containers/VirtualNetworks/index.js b/src/fireedge/src/client/containers/VirtualNetworks/index.js index ae6eba42b3..18e58671a8 100644 --- a/src/fireedge/src/client/containers/VirtualNetworks/index.js +++ b/src/fireedge/src/client/containers/VirtualNetworks/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import { Container, Box } from '@material-ui/core' diff --git a/src/fireedge/src/client/containers/VirtualRouters/index.js b/src/fireedge/src/client/containers/VirtualRouters/index.js index 649bb517a3..1e452f87db 100644 --- a/src/fireedge/src/client/containers/VirtualRouters/index.js +++ b/src/fireedge/src/client/containers/VirtualRouters/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import { Container, Box } from '@material-ui/core' diff --git a/src/fireedge/src/client/containers/VmTemplates/index.js b/src/fireedge/src/client/containers/VmTemplates/index.js index b323a54cd8..16225e5356 100644 --- a/src/fireedge/src/client/containers/VmTemplates/index.js +++ b/src/fireedge/src/client/containers/VmTemplates/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import { Container, Box } from '@material-ui/core' diff --git a/src/fireedge/src/client/containers/Zones/index.js b/src/fireedge/src/client/containers/Zones/index.js index 6c5e0fadde..b30d5ac584 100644 --- a/src/fireedge/src/client/containers/Zones/index.js +++ b/src/fireedge/src/client/containers/Zones/index.js @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * * limitations under the License. * * ------------------------------------------------------------------------- */ +/* eslint-disable jsdoc/require-jsdoc */ import * as React from 'react' import { Container, Box } from '@material-ui/core'