mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
Make sure all samples are extending the eslint base configs
This commit is contained in:
@ -30,6 +30,7 @@ export function activate(context: vscode.ExtensionContext) {
|
||||
const req = await fetch('https://app.vssps.visualstudio.com/_apis/profile/profiles/me?api-version=6.0', {
|
||||
headers: {
|
||||
authorization: `Basic ${Buffer.from(`:${session.accessToken}`).toString('base64')}`,
|
||||
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||
'content-type': 'application/json',
|
||||
},
|
||||
});
|
||||
@ -48,6 +49,3 @@ export function activate(context: vscode.ExtensionContext) {
|
||||
|
||||
context.subscriptions.push(disposable);
|
||||
}
|
||||
|
||||
// this method is called when your extension is deactivated
|
||||
export function deactivate() { }
|
||||
|
||||
Reference in New Issue
Block a user