Skip to content

Commit 5e9f79e

Browse files
author
Revanth Banala
committed
disable eslint
1 parent 69a7c5e commit 5e9f79e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

app/frontend/src/components/designer/FormViewer.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<script setup>
2+
/* eslint-disable no-console */
3+
24
import { Form } from '@formio/vue';
35
import _ from 'lodash';
46
import { storeToRefs } from 'pinia';
@@ -1035,7 +1037,7 @@ async function uploadFile(file, config = {}) {
10351037
return fileService.uploadFile(file, uploadConfig);
10361038
}
10371039
</script>
1038-
1040+
<!-- eslint-enable no-console -->
10391041
<template>
10401042
<v-skeleton-loader :loading="loadingSubmission" type="article, actions">
10411043
<v-container fluid>

app/frontend/src/composables/useLocalAutosave.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* eslint-disable no-console */
2+
13
/**
24
* Simple local crash-recovery autosave.
35
*
@@ -421,3 +423,4 @@ export function useLocalAutosave() {
421423
_isPending: isPending,
422424
};
423425
}
426+
/* eslint-enable no-console */

0 commit comments

Comments
 (0)