This repository has been archived by the owner on Jul 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
399 additions
and
228 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
This file was deleted.
Oops, something went wrong.
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,22 @@ | ||
--- | ||
title: Change Requests | ||
layout: doc | ||
--- | ||
|
||
# Change Requests | ||
|
||
If you'd like to request a change to ESLint, please [create a new issue](https://github.com/eslint/eslint/issues/new?body=**What%20version%20are%20you%20using%3F**%0A%0A**What%20did%20you%20do%3F**%0A%0A**What%20happened%3F**%0A%0A**What%20did%20you%20expect%20to%20happen%3F**%0A%0A) on GitHub. Be sure to include the following information: | ||
|
||
1. The version of ESLint you are using. | ||
1. The problem you want to solve. | ||
1. Your take on the correct solution to problem. | ||
|
||
If you're requesting a change to a rule, it's helpful to include this information as well: | ||
|
||
1. What you did. | ||
1. What you would like to happen. | ||
1. What actually happened. | ||
|
||
Please include as much detail as possible to help us properly address your issue. If we need to triage issues and constantly ask people for more detail, that's time taken away from actually fixing issues. Help us be as efficient as possible by including a lot of detail in your issues. | ||
|
||
**Note:** If you just have a question that won't necessarily result in a change to ESLint, such as asking how something works or how to contribute, please use the [mailing list](https://groups.google.com/group/eslint) instead of filing an issue. |
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 @@ | ||
--- | ||
title: Contributing | ||
layout: doc | ||
--- | ||
|
||
# Contributing | ||
|
||
One of the great things about open source projects is that anyone can contribute in any number of meaningful ways. ESLint couldn't exist without the help of the many contributors it's had since the project began, and we want you to feel like you can contribute and make a difference as well. | ||
|
||
This guide is intended for anyone who wants to contribute to an ESLint project. Please read it carefully as it answers a lot of the questions many newcomers have when first working with our projects. | ||
|
||
## [Signing the CLA](/cla) | ||
|
||
In order to submit code or documentation to an ESLint project, please electronically sign the [Contributor License Agreement](http://eslint.org/cla). The CLA is you giving us permission to use your contribution. | ||
|
||
## [Bug Reporting](bug-reporting) | ||
|
||
Think you found a problem? We'd love to hear about it. This section explains how to submit a bug, the type of information we need to properly verify it, and the overall process. | ||
|
||
## Proposing a [New Rule](new-rules) | ||
|
||
We get a lot of proposals for new rules in ESLint. This section explains how we determine which rules are accepted and what information you should provide to help us evaluate your proposal. | ||
|
||
## Requesting a [Change](changes) | ||
|
||
If you'd like to request a change other than a bug fix or new rule, this section explains that process. | ||
|
||
## [Working on Issues](working-on-issues) | ||
|
||
Have some extra time and want to contribute? This section talks about the process of working on issues. | ||
|
||
## Submitting a [Pull Request](pull-requests) | ||
|
||
We're always looking for contributions from the community. This section explains the requirements for pull requests and the process of contributing code. |
Oops, something went wrong.