Skip to content

Commit a86c1ce

Browse files
Marcono1234aeisenberg
authored andcommitted
Use HTTPS for links
1 parent 01418cb commit a86c1ce

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.vscode/extensions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
// See http://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
2+
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
33
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
44
// List of extensions which should be recommended for users of this workspace.
55
"recommendations": [

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Here are a few things you can do that will increase the likelihood of your pull
2525
* Follow the [style guide][style].
2626
* Write tests. Tests that don't require the VS Code API are located [here](extensions/ql-vscode/test). Integration tests that do require the VS Code API are located [here](extensions/ql-vscode/src/vscode-tests).
2727
* Keep your change as focused as possible. If there are multiple changes you would like to make that are not dependent upon each other, consider submitting them as separate pull requests.
28-
* Write a [good commit message](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
28+
* Write a [good commit message](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
2929

3030
## Setting up a local build
3131

extensions/ql-vscode/gulpfile.ts/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json.schemastore.org/tsconfig",
2+
"$schema": "https://json.schemastore.org/tsconfig",
33
"compilerOptions": {
44
"declaration": true,
55
"strict": true,

extensions/ql-vscode/src/vscode-tests/no-workspace/databaseFetcher.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ describe('databaseFetcher', function() {
6666
);
6767
});
6868

69-
it('should fail on a nonexistant prohect', async () => {
69+
it('should fail on a nonexistent project', async () => {
7070
quickPickSpy.resolves('javascript');
7171
const lgtmUrl = 'https://lgtm.com/projects/g/github/hucairz';
7272
expect(convertToDatabaseUrl(lgtmUrl)).to.rejectedWith(/Invalid LGTM URL/);

extensions/ql-vscode/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://json.schemastore.org/tsconfig",
2+
"$schema": "https://json.schemastore.org/tsconfig",
33
"compilerOptions": {
44
"declaration": true,
55
"strict": true,

0 commit comments

Comments
 (0)