We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15ee529 commit 61591e5Copy full SHA for 61591e5
.eslintrc.js
@@ -13,6 +13,7 @@ module.exports = {
13
},
14
rules: {
15
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
16
- 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
+ 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
17
+ '@typescript-eslint/no-explicit-any': 'off'
18
}
19
src/components/RawDataViewer.vue
@@ -29,7 +29,7 @@
29
</template>
30
31
<script lang="ts">
32
- import { defineComponent, ref } from 'vue';
+ import { defineComponent } from 'vue';
33
import { getGitHubCopilotMetricsApi } from '../api/GitHubApi';
34
import { Metrics } from '../model/MetricsData';
35
0 commit comments