Skip to content

Commit c34dead

Browse files
Merge pull request #1309 from MetRonnie/update-eslint
Update eslint dependencies
2 parents e8751d0 + 489a4c5 commit c34dead

File tree

7 files changed

+698
-44
lines changed

7 files changed

+698
-44
lines changed

.eslintrc.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,8 @@ module.exports = {
5858
'promise/no-return-wrap': [
5959
'error'
6060
],
61+
'cypress/unsafe-to-chain-command': [
62+
'off'
63+
]
6164
},
6265
}

package.json

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,15 @@
5858
"cross-fetch": "^3.1.5",
5959
"cypress": "^12.13.0",
6060
"cypress-vite": "^1.4.0",
61-
"eslint": "^8.0.0",
62-
"eslint-config-standard": "^17.0.0",
63-
"eslint-plugin-cypress": "^2.12.1",
64-
"eslint-plugin-no-only-tests": "^3.0.0",
65-
"eslint-plugin-promise": "^6.0.0",
66-
"eslint-plugin-vue": "^9.10.0",
67-
"eslint-plugin-vuetify": "^2.0.0-beta.3",
61+
"eslint": "^8.41.0",
62+
"eslint-config-standard": "^17.1.0",
63+
"eslint-plugin-cypress": "^2.13.3",
64+
"eslint-plugin-import": "^2.27.5",
65+
"eslint-plugin-n": "^16.0.0",
66+
"eslint-plugin-no-only-tests": "^3.1.0",
67+
"eslint-plugin-promise": "^6.1.1",
68+
"eslint-plugin-vue": "^9.14.1",
69+
"eslint-plugin-vuetify": "^2.0.1",
6870
"express": "^4.17.2",
6971
"express-ws": "^5.0.2",
7072
"graphql-ws": "^5.12.1",

src/components/cylc/Mutation.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
2424

2525
<!-- the mutation description -->
2626
<v-expansion-panels
27-
accordion
27+
variant="accordian"
2828
v-bind="extendedDescription ? { hover: true } : { readonly: true }"
2929
>
3030
<v-expansion-panel

src/components/cylc/table/Table.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
4545
fluid
4646
class="ma-0 pa-0 w-100 h-100 left-0 top-0 position-absolute pt-2"
4747
>
48-
<!-- eslint-disable-next-line vuetify/no-deprecated-components -->
4948
<v-data-table
5049
:headers="headers"
5150
:items="filteredTasks"

src/views/Dashboard.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
2424
<v-row wrap>
2525
<v-col md="6" lg="6">
2626
<p class="text-h4 mb-2">Workflows</p>
27-
<!-- eslint-disable-next-line vuetify/no-deprecated-components -->
2827
<v-data-table
2928
:headers="workflowsHeader"
3029
:items="workflowsTable"
@@ -39,7 +38,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
3938
</v-col>
4039
<v-col md="6" lg="6">
4140
<p class="text-h4 mb-2">Events</p>
42-
<!-- eslint-disable-next-line vuetify/no-deprecated-components -->
4341
<v-data-table
4442
:headers="eventsHeader"
4543
:items="events"

src/views/WorkflowsTable.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
3131
>
3232
<h3 class="text-h5">{{ $t('Workflows.tableHeader') }}</h3>
3333
</v-alert>
34-
<!-- eslint-disable-next-line vuetify/no-deprecated-components -->
3534
<v-data-table
3635
:headers="headers"
3736
:items="workflowsTable"

0 commit comments

Comments
 (0)