Skip to content

Commit 61591e5

Browse files
committed
Fix lint errors
1 parent 15ee529 commit 61591e5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.eslintrc.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ module.exports = {
1313
},
1414
rules: {
1515
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
16-
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
16+
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
17+
'@typescript-eslint/no-explicit-any': 'off'
1718
}
1819
}

src/components/RawDataViewer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</template>
3030

3131
<script lang="ts">
32-
import { defineComponent, ref } from 'vue';
32+
import { defineComponent } from 'vue';
3333
import { getGitHubCopilotMetricsApi } from '../api/GitHubApi';
3434
import { Metrics } from '../model/MetricsData';
3535

0 commit comments

Comments
 (0)