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:
1. Clone the repository

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

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

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

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

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

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

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

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

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

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

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

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import * as vscode from "vscode";
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 {
Disposable,

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

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

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

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

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

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

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

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

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

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

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

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import * as vscode from "vscode";
import { EXTENSION_NAME, SMALL_ICON_URL } from "../constants";
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" {
export enum CellKind {
Markdown = 1,

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

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

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

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { reaction } from "mobx";
import * as vscode from "vscode";
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 {
commands,

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

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { reaction } from "mobx";
import * as vscode from "vscode";
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 * as path from "path";
import * as vscode from "vscode";

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

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

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

@ -1,3 +1,6 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { commands, EventEmitter, Memento, Uri, window } from "vscode";
import { CodeTour, store } from ".";
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 { CommentThread, Uri } from "vscode";

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

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

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

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

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

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

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

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

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

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