Skip to content

Commit 33909b0

Browse files
authored
Merge pull request #1 from parroty/fix-lint-errors
Fix for lint errors and a typo
2 parents 15ee529 + 8e1bc97 commit 33909b0

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
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
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Your organization must be enrolled in the GitHub Copilot API private alpha.
5353

5454
## Setup instructions
5555

56-
- Instrucions on how to authenticate are provided in the API documentation - available if you have access to the private alpha.
56+
- Instructions on how to authenticate are provided in the API documentation - available if you have access to the private alpha.
5757
- Edit the .env file in the root directory of the project and add the following variables:
5858

5959
```

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)