-
Notifications
You must be signed in to change notification settings - Fork 170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Point to SDK contributing guide #4719
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -1,87 +1,15 @@ | ||
Contributing to the Linter | ||
========================== | ||
|
||
[![Build Status](https://github.com/dart-lang/linter/workflows/linter/badge.svg)](https://github.com/dart-lang/linter/actions) | ||
![GitHub contributors](https://img.shields.io/github/contributors/dart-lang/linter.svg) | ||
## [Repository has moved][] | ||
|
||
The Dart linter is now developed within the [Dart SDK][] repository, | ||
and can be found at https://github.com/dart-lang/sdk/tree/main/pkg/linter. | ||
|
||
Want to contribute? Great! First, read this page (including the small print at | ||
the end). | ||
To contribute changes, check out the [SDK Linter contribution guide][]. | ||
|
||
### Before you contribute | ||
[Dart SDK]: https://github.com/dart-lang/sdk | ||
[SDK Linter contribution guide]: https://github.com/dart-lang/sdk/blob/main/pkg/linter/CONTRIBUTING.md | ||
|
||
_See also: [Dart's code of conduct](https://dart.dev/code-of-conduct)_ | ||
|
||
Before we can use your code, you must sign the | ||
[Google Individual Contributor License Agreement](https://cla.developers.google.com/about/google-individual) | ||
(CLA), which you can do online. The CLA is necessary mainly because you own the | ||
copyright to your changes, even after your contribution becomes part of our | ||
codebase, so we need your permission to use and distribute your code. We also | ||
need to be sure of various other things—for instance that you'll tell us if you | ||
know that your code infringes on other people's patents. You don't have to sign | ||
the CLA until after you've submitted your code for review and a member has | ||
approved it, but you must do it before we can put your code into our codebase. | ||
|
||
Before you start working on a larger contribution, you should get in touch with | ||
us first through the issue tracker with your idea so that we can help out and | ||
possibly guide you. Coordinating up front makes it much easier to avoid | ||
frustration later on. | ||
|
||
### Code reviews | ||
All submissions, including submissions by project members, require review. | ||
|
||
### File headers | ||
All files in the project must start with the following header. | ||
|
||
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file | ||
// for details. All rights reserved. Use of this source code is governed by a | ||
// BSD-style license that can be found in the LICENSE file. | ||
|
||
### Mechanics | ||
Contributing code is easy. | ||
|
||
* First, get the source by forking `https://github.com/dart-lang/linter` into your own GitHub account. | ||
* If you haven't configured your machine with an SSH key that's known to GitHub then follow the directions here: https://help.github.com/articles/generating-ssh-keys/. | ||
* `git clone git@github.com:<your_name_here>/linter.git` | ||
* `cd linter` | ||
* `git remote add upstream git@github.com:dart-lang/linter.git` (So that you fetch from the main repository, not your clone, when running git fetch et al.) | ||
|
||
To start working on a patch: | ||
|
||
* `git fetch upstream` | ||
* `git checkout upstream/main -b name_of_your_branch` | ||
* Hack away. (Before committing, please be sure and run `dart format` on modified files; our build will fail if you don't!) | ||
* `git commit -a -m "<your informative commit message>"` | ||
* `git push origin name_of_your_branch` | ||
|
||
To send us a pull request: | ||
|
||
* `git pull-request` (if you are using [Hub](https://github.com/github/hub/)) or | ||
go to `https://github.com/dart-lang/linter` and click the | ||
"Compare & pull request" button | ||
* either explicitly name a reviewer in the GitHub UI or add their GitHub name in the pull request message body | ||
|
||
Please make sure all your checkins have detailed commit messages explaining the patch and if a PR is *not* ready to land, consider making it clear in the description and/or prefixing the title with "WIP". | ||
|
||
Please note that a few kinds of changes require a `CHANGELOG` entry. Notably, any change that: | ||
|
||
1. adds a new lint | ||
2. removes or deprecates a lint or | ||
3. fundamentally changes the semantics of an existing lint | ||
|
||
should have a short entry in the `CHANGELOG`. Feel free to bring up any questions in your PR. | ||
|
||
Once you've gotten an LGTM from a project maintainer, submit your changes to the | ||
`main` branch using one of the following methods: | ||
|
||
* Wait for one of the project maintainers to submit it for you. | ||
* Click the green "Merge pull request" button on the GitHub UI of your pull | ||
request (requires commit access) | ||
* `git push upstream name_of_your_branch:main` (requires commit access) | ||
* Having done all this, please make sure we have a good email address so we can credit you in our `AUTHORS` file. | ||
* Thank you! | ||
|
||
### The small print | ||
Contributions made by corporations are covered by a different agreement than the | ||
one above, the | ||
[Software Grant and Corporate Contributor License Agreement](https://developers.google.com/open-source/cla/corporate). |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see a target for this link. I'm guessing that you didn't intend for it to be a link.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Quite right. I just copied what @parlough did for the README but perhaps that's a mistake too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.