-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds many standard GitHub templates/files
Switches to yarn
- Loading branch information
Showing
15 changed files
with
693 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@eamodio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# These are supported funding model platforms | ||
|
||
github: [eamodio] | ||
patreon: eamodio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help improve TypeScript + Webpack Problem Matchers | ||
title: '' | ||
labels: 'type: potential bug' | ||
assignees: '' | ||
--- | ||
|
||
<!-- Please search existing issues to avoid creating duplicates. --> | ||
|
||
- TypeScript + Webpack Problem Matchers Version: | ||
<!-- Use Help > Report Issue to prefill these. --> | ||
- VSCode Version: | ||
- OS Version: | ||
|
||
Steps to Reproduce: | ||
|
||
1. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for TypeScript + Webpack Problem Matchers | ||
title: '' | ||
labels: 'type: feature' | ||
assignees: '' | ||
--- | ||
|
||
<!-- Please search existing issues to avoid creating duplicates. --> | ||
|
||
<!-- Describe the feature you'd like. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
name: Question | ||
about: Ask a question about TypeScript + Webpack Problem Matchers | ||
title: '' | ||
labels: 'type: question' | ||
assignees: '' | ||
--- | ||
|
||
<!-- Please search existing issues to avoid creating duplicates. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
## Thank you for taking the time to contribute to TypeScript + Webpack Problem Matchers! ♥ | ||
|
||
### 🚨 IMPORTANT 🚨 | ||
|
||
- Please create an issue _before_ creating a Pull Request | ||
- Please ensure to use the `master` branch as the base for all PRs | ||
- Please use the following Git commit message style | ||
- Use the future tense ("Adds feature" not "Added feature") | ||
- Use a "Fixes #xxx -" or "Closes #xxx -" prefix to auto-close the issue that your PR addresses | ||
- Limit the first line to 72 characters or less | ||
- Reference issues and pull requests liberally after the first line | ||
|
||
<!-- You can erase any parts of this template not applicable to your Pull Request. --> | ||
|
||
<!-- Delete everything above here before submitting --> | ||
|
||
# Description | ||
|
||
<!-- | ||
Please include a summary of the changes and which issue will be addressed. Please also include relevant motivation and context. | ||
--> | ||
|
||
# Checklist | ||
|
||
<!-- Please check off the following --> | ||
|
||
- [ ] I have followed the guidelines in the Contributing document | ||
- [ ] My changes are based off of the `master` branch | ||
- [ ] My changes follow the coding style of this project | ||
- [ ] My changes build without any errors or warnings | ||
- [ ] My changes have been formatted and linted | ||
- [ ] My changes include any required corresponding changes to the documentation | ||
- [ ] My changes have been rebased and squashed to the minimal number (typically 1) of relevant commits | ||
- [ ] My changes have a descriptive commit message with a short title, including a `Fixes $XXX -` or `Closes #XXX -` prefix to auto-close the issue that your PR addresses |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// A launch configuration that compiles the extension and then opens it inside a new window | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Launch Extension", | ||
"type": "extensionHost", | ||
"request": "launch", | ||
"runtimeExecutable": "${execPath}", | ||
"args": ["--extensionDevelopmentPath=${workspaceFolder}"], | ||
"cwd": "${workspaceFolder}" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,13 @@ | ||
.github/** | ||
.vscode/** | ||
node_modules/** | ||
src/** | ||
test/** | ||
*.map | ||
.gitattributes | ||
.gitignore | ||
package-lock.json | ||
.prettierrc | ||
.yarnrc | ||
CODE_OF_CONDUCT.md | ||
CONTRIBUTING.md | ||
yarn.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ignore-engines true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Contributor Covenant Code of Conduct | ||
|
||
## Our Pledge | ||
|
||
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. | ||
|
||
## Our Standards | ||
|
||
Examples of behavior that contributes to creating a positive environment include: | ||
|
||
- Using welcoming and inclusive language | ||
- Being respectful of differing viewpoints and experiences | ||
- Gracefully accepting constructive criticism | ||
- Focusing on what is best for the community | ||
- Showing empathy towards other community members | ||
|
||
Examples of unacceptable behavior by participants include: | ||
|
||
- The use of sexualized language or imagery and unwelcome sexual attention or advances | ||
- Trolling, insulting/derogatory comments, and personal or political attacks | ||
- Public or private harassment | ||
- Publishing others' private information, such as a physical or electronic address, without explicit permission | ||
- Other conduct which could reasonably be considered inappropriate in a professional setting | ||
|
||
## Our Responsibilities | ||
|
||
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. | ||
|
||
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. | ||
|
||
## Scope | ||
|
||
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. | ||
|
||
## Enforcement | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at eamodio@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. | ||
|
||
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. | ||
|
||
## Attribution | ||
|
||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] | ||
|
||
[homepage]: http://contributor-covenant.org | ||
[version]: http://contributor-covenant.org/version/1/4/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Contributing | ||
|
||
👍🎉 First off, thanks for taking the time to contribute! 🎉👍 | ||
|
||
When contributing to this project, please first discuss the changes you wish to make via an issue before making changes. | ||
|
||
Please note the [Code of Conduct](CODE_OF_CONDUCT.md) document, please follow it in all your interactions with this project. | ||
|
||
## Your First Code Contribution | ||
|
||
Unsure where to begin contributing? You can start by looking through the [`help-wanted`](https://github.com/eamodio/vscode-tsl-problem-matcher/labels/help%20wanted) issues. | ||
|
||
### Getting the code | ||
|
||
``` | ||
git clone https://github.com/eamodio/vscode-tsl-problem-matcher.git | ||
``` | ||
|
||
Prerequisites | ||
|
||
- [Git](https://git-scm.com/) | ||
- [NodeJS](https://nodejs.org/), `>= 10.11.0` | ||
- [yarn](https://yarnpkg.com/), `>= 1.17.3` | ||
|
||
### Dependencies | ||
|
||
From a terminal, where you have cloned the repository, execute the following command to install the required dependencies: | ||
|
||
``` | ||
yarn --frozen-lockfile | ||
``` | ||
|
||
### Formatting | ||
|
||
This project uses [prettier](https://prettier.io/) for code formatting. You can run prettier across the code by calling `yarn run pretty` from a terminal. | ||
|
||
To format the code as you make changes you can install the [Prettier - Code formatter](https://marketplace.visualstudio.com/items/esbenp.prettier-vscode) extension. | ||
|
||
Add the following to your User Settings to run prettier: | ||
|
||
``` | ||
"editor.formatOnSave": true, | ||
``` | ||
|
||
### Bundling | ||
|
||
To generate a VSIX (installation package) run the following from a terminal: | ||
|
||
``` | ||
yarn run pack | ||
``` | ||
|
||
## Submitting a Pull Request | ||
|
||
Please follow all the instructions in the [PR template](.github/PULL_REQUEST_TEMPLATE.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.