Updating contributing information

This commit is contained in:
Jonathan Carter 2021-01-06 21:14:06 +00:00 коммит произвёл GitHub
Родитель a3459ed069
Коммит f11e689c45
28 изменённых файлов: 96 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,20 @@
# Contributing
This project welcomes contributions and suggestions. Most contributions require you to
agree to a Contributor License Agreement (CLA) declaring that you have the right to,
and actually do, grant us the rights to use your contribution. For details, visit
https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need
to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the
instructions provided by the bot. You will only need to do this once across all repositories using our CLA.
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
## Getting Started
Hey 👋 Thanks for wanting to contribute to `CodeTour`! Getting started is simple: Hey 👋 Thanks for wanting to contribute to `CodeTour`! Getting started is simple:
1. Clone the repository 1. Clone the repository

2
package-lock.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{ {
"name": "codetour", "name": "codetour",
"version": "0.0.39", "version": "0.0.42",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { ExtensionContext } from "vscode"; import { ExtensionContext } from "vscode";
import { import {
endCurrentCodeTour, endCurrentCodeTour,

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { registerPlayerCommands } from "./player/commands"; import { registerPlayerCommands } from "./player/commands";
import { registerRecorderCommands } from "./recorder/commands"; import { registerRecorderCommands } from "./recorder/commands";

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { Uri } from "vscode"; import { Uri } from "vscode";
export const EXTENSION_NAME = "codetour"; export const EXTENSION_NAME = "codetour";

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import * as vscode from "vscode"; import * as vscode from "vscode";
import { initializeApi } from "./api"; import { initializeApi } from "./api";
import { registerCommands } from "./commands"; import { registerCommands } from "./commands";

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import * as vscode from "vscode"; import * as vscode from "vscode";
import { FS_SCHEME_CONTENT } from "../constants"; import { FS_SCHEME_CONTENT } from "../constants";

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import * as path from "path"; import * as path from "path";
import { import {
Disposable, Disposable,

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import * as vscode from "vscode"; import * as vscode from "vscode";
export const enum RefType { export const enum RefType {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import * as vsls from "vsls"; import * as vsls from "vsls";
import { EXTENSION_NAME } from "../constants"; import { EXTENSION_NAME } from "../constants";
import { startCodeTour } from "../store/actions"; import { startCodeTour } from "../store/actions";

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { Uri } from "vscode"; import { Uri } from "vscode";
import * as vsls from "vsls"; import * as vsls from "vsls";
import { EXTENSION_NAME } from "../constants"; import { EXTENSION_NAME } from "../constants";

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import * as vsls from "vsls"; import * as vsls from "vsls";
import { EXTENSION_NAME } from "../constants"; import { EXTENSION_NAME } from "../constants";

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { Uri } from "vscode"; import { Uri } from "vscode";
import { LiveShare, Role, SharedService, SharedServiceProxy } from "vsls"; import { LiveShare, Role, SharedService, SharedServiceProxy } from "vsls";
import { import {

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import * as vscode from "vscode"; import * as vscode from "vscode";
import { EXTENSION_NAME, SMALL_ICON_URL } from "../constants"; import { EXTENSION_NAME, SMALL_ICON_URL } from "../constants";
import { CodeTour } from "../store"; import { CodeTour } from "../store";

3
src/notebook/vscode.proposed.d.ts поставляемый
Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
declare module "vscode" { declare module "vscode" {
export enum CellKind { export enum CellKind {
Markdown = 1, Markdown = 1,

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { when } from "mobx"; import { when } from "mobx";
import * as vscode from "vscode"; import * as vscode from "vscode";
import { EXTENSION_NAME } from "../constants"; import { EXTENSION_NAME } from "../constants";

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { reaction } from "mobx"; import { reaction } from "mobx";
import * as vscode from "vscode"; import * as vscode from "vscode";
import { FS_SCHEME_CONTENT, ICON_URL } from "../constants"; import { FS_SCHEME_CONTENT, ICON_URL } from "../constants";

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { reaction } from "mobx"; import { reaction } from "mobx";
import { import {
commands, commands,

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { reaction } from "mobx"; import { reaction } from "mobx";
import * as vscode from "vscode"; import * as vscode from "vscode";
import { EXTENSION_NAME } from "../constants"; import { EXTENSION_NAME } from "../constants";

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { action, comparer, runInAction } from "mobx"; import { action, comparer, runInAction } from "mobx";
import * as path from "path"; import * as path from "path";
import * as vscode from "vscode"; import * as vscode from "vscode";

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import * as vscode from "vscode"; import * as vscode from "vscode";
const COMMANDS = [ const COMMANDS = [

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { commands, EventEmitter, Memento, Uri, window } from "vscode"; import { commands, EventEmitter, Memento, Uri, window } from "vscode";
import { CodeTour, store } from "."; import { CodeTour, store } from ".";
import { EXTENSION_NAME, FS_SCHEME, FS_SCHEME_CONTENT } from "../constants"; import { EXTENSION_NAME, FS_SCHEME, FS_SCHEME_CONTENT } from "../constants";

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { observable } from "mobx"; import { observable } from "mobx";
import { CommentThread, Uri } from "vscode"; import { CommentThread, Uri } from "vscode";

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { comparer, runInAction, set } from "mobx"; import { comparer, runInAction, set } from "mobx";
import * as vscode from "vscode"; import * as vscode from "vscode";
import { CodeTour, store } from "."; import { CodeTour, store } from ".";

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { observable } from "mobx"; import { observable } from "mobx";
import { commands, ExtensionContext, Uri, workspace } from "vscode"; import { commands, ExtensionContext, Uri, workspace } from "vscode";
import { CodeTour, store } from "."; import { CodeTour, store } from ".";

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { reaction } from "mobx"; import { reaction } from "mobx";
import { import {
Disposable, Disposable,

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { import {
ThemeColor, ThemeColor,
ThemeIcon, ThemeIcon,

Просмотреть файл

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import * as os from "os"; import * as os from "os";
import * as path from "path"; import * as path from "path";
import { Uri, workspace } from "vscode"; import { Uri, workspace } from "vscode";