Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,24 @@
"group": "0_launch"
}
},
{
"type": "extensionHost",
"request": "launch",
"name": "Launch Copilot Extension - No Debug",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"smartStep": false,
"sourceMaps": false,
"envFile": "${workspaceFolder}/.env",
"env": {
"COPILOT_LOG_TELEMETRY": "true",
},
"presentation": {
"group": "0_launch"
}
},
{
"type": "extensionHost",
"request": "launch",
Expand Down
16 changes: 1 addition & 15 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ import path from 'path';
import tseslint from 'typescript-eslint';
import { fileURLToPath } from 'url';

import headerEslint from 'eslint-plugin-header';
headerEslint.rules.header.meta.schema = false;

import * as localEslint from './.eslintplugin/index.ts';

const __dirname = path.dirname(fileURLToPath(import.meta.url));
Expand Down Expand Up @@ -46,7 +43,6 @@ export default tseslint.config(
},
plugins: {
'@stylistic': stylisticEslint,
'header': headerEslint,
},
rules: {
'indent': [
Expand Down Expand Up @@ -97,17 +93,7 @@ export default tseslint.config(
'context'
], // non-complete list of globals that are easy to access unintentionally
'no-var': 'error',
'semi': 'error',
'header/header': [
'error',
'block',
[
'---------------------------------------------------------------------------------------------',
' * Copyright (c) Microsoft Corporation. All rights reserved.',
' * Licensed under the MIT License. See License.txt in the project root for license information.',
' *--------------------------------------------------------------------------------------------'
]
]
'semi': 'error'
},
settings: {
'import/resolver': {
Expand Down
Loading
Loading