File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ module.exports = {
13
13
} ,
14
14
rules : {
15
15
'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'
17
18
}
18
19
}
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ Your organization must be enrolled in the GitHub Copilot API private alpha.
53
53
54
54
## Setup instructions
55
55
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.
57
57
- Edit the .env file in the root directory of the project and add the following variables:
58
58
59
59
```
Original file line number Diff line number Diff line change 29
29
</template >
30
30
31
31
<script lang="ts">
32
- import { defineComponent , ref } from ' vue' ;
32
+ import { defineComponent } from ' vue' ;
33
33
import { getGitHubCopilotMetricsApi } from ' ../api/GitHubApi' ;
34
34
import { Metrics } from ' ../model/MetricsData' ;
35
35
You can’t perform that action at this time.
0 commit comments