Added issue, pull request, and contributing templates
This commit is contained in:
@@ -0,0 +1,90 @@
|
||||
# Contributing
|
||||
|
||||
We would love for you to contribute to Milligram and help us make this even better! Start reading this document to see it is not difficult as you might have imagined.
|
||||
|
||||
|
||||
## Table of Contents
|
||||
|
||||
- [Open an Issue](#open-an-issue)
|
||||
- [Submit a Pull Request](#submit-a-pull-request)
|
||||
- [Building](#building)
|
||||
- [Style Guide](#style-guide)
|
||||
- [Code of Conduct](#code-of-conduct)
|
||||
- [License](#license)
|
||||
|
||||
|
||||
## Open an Issue
|
||||
|
||||
[Open an Issue](https://github.com/milligram/milligram/issues/new) to report any problems or improvements. When necessary, use [Codepen](http://codepen.io/) to show the problem. Be sure to include some description to explain the problem.
|
||||
|
||||
|
||||
## Submit a Pull Request
|
||||
|
||||
To submit a new feature, make sure that changes are done to the source code. [Follow our style guide](#style-guide) and do not forget the tests and attach the link [Codepen](http://codepen.io/) along with the description.
|
||||
|
||||
Try to solve a problem for each pull request, this increases the chances of acceptance. When in doubt, open a [new issue](#open-an-issue) so we can answer you. Look existing issues for ideas or to see if a similar issue has already been submitted.
|
||||
|
||||
1. Fork the Github repo: `git clone https://github.com/milligram/milligram.git`
|
||||
1. Create a new branch: `git checkout -b issuenumber-feature-name`
|
||||
1. Commit your changes: `git commit -m 'issuenumber-feature-name'`
|
||||
1. Push to the branch: `git push origin my-feature-name`
|
||||
1. Submit a pull request!
|
||||
|
||||
*Note: For issues relating to the site, please use the [milligram.github.io](https://github.com/milligram/milligram.github.io)*
|
||||
|
||||
|
||||
## Building
|
||||
|
||||
First install [Node.js](https://nodejs.org/en/download/), em seguida [Grunt](http://gruntjs.com/getting-started) e [Sass](http://sass-lang.com/install) for the build process. Now install all the dependencies, run `npm install` from the project directory. Once you have the dependencies installed, run `grunt`. This will run the default grunt task which compiles the Sass files into milligram.css file.
|
||||
|
||||
|
||||
## Style Guide
|
||||
|
||||
Milligram use [Sass](http://sass-lang.com/) to give super powers to CSS. Look at how the code is being maintained, we must always be consistent. We try to follow best practices as much as possible. In addition, here are some tips you should follow:
|
||||
|
||||
- Properties and selectors are sorted in alphabetical order
|
||||
- Always use tab to indentation, no spaces
|
||||
- Always use single quote, i.e. `content: ''`
|
||||
- Quote attribute values in selectors, i.e. `input[type='checkbox']`
|
||||
- Avoid specifying units for zero-values, i.e. `margin: 0`
|
||||
- Use `rem` unit instead of `px`
|
||||
- Use lowercase and shorthand hex values, i.e. `#fff`
|
||||
- Use one discrete selector per line in multi-selector rulesets
|
||||
- Include a single space after colon and after each comma
|
||||
- Separate each ruleset by a blank line
|
||||
- Don't use prefixes, there is a task to generate this automatically
|
||||
|
||||
```sass
|
||||
.selector-a,
|
||||
.selector-b,
|
||||
.selector-c,
|
||||
.selector-d[type='text']
|
||||
box-sizing: border-box
|
||||
color: #333
|
||||
content: ''
|
||||
display: inline-block
|
||||
font-family: 'Helvetica-Neue', 'Helvetica', 'Arial', sans-serif
|
||||
margin-bottom: 0
|
||||
margin-left: 5.0rem
|
||||
|
||||
.other-selector-a
|
||||
background: #fff
|
||||
|
||||
.other-selector-b
|
||||
background: #fff
|
||||
|
||||
&.increasing-the-specificity
|
||||
color: #000
|
||||
```
|
||||
|
||||
*Note: This style guide was inspired by [Idiomatic.css](https://github.com/necolas/idiomatic-css). Milligram uses an `.editorconfig` file, which most editors support, to enforce these coding standards.*
|
||||
|
||||
|
||||
## Code of Conduct
|
||||
|
||||
Help us keep Milligram open and inclusive. Please read and follow our thoughts on [Code of Conduct](http://confcodeofconduct.com/).
|
||||
|
||||
|
||||
## License
|
||||
|
||||
By contributing your code, you agree to license your contribution under the [MIT license](https://github.com/milligram/milligram#license).
|
||||
Executable
+47
@@ -0,0 +1,47 @@
|
||||
<!--
|
||||
|
||||
We would love for you to contribute to Milligram and help us make this even better! Start reading this [document](https://github.com/milligram/milligram/blob/master/.github/contributing.md) to see it is not difficult as you might have imagined.
|
||||
|
||||
Open an Issue
|
||||
==============================
|
||||
[Open an Issue](https://github.com/milligram/milligram/issues/new) to report any problems or improvements. When necessary, use [Codepen](http://codepen.io/) to show the problem. Be sure to include some description to explain the problem.
|
||||
|
||||
Code of Conduct
|
||||
==============================
|
||||
Help us keep Milligram open and inclusive. Please read and follow our thoughts on [Code of Conduct](http://confcodeofconduct.com/).
|
||||
|
||||
License
|
||||
==============================
|
||||
By contributing your code, you agree to license your contribution under the [MIT license](https://github.com/milligram/milligram#license).
|
||||
|
||||
-->
|
||||
|
||||
|
||||
### Version info
|
||||
|
||||
<!-- What versions of the following libraries are you using? Note that your issue may already
|
||||
be fixed in the latest versions. -->
|
||||
|
||||
**Milligram:**
|
||||
|
||||
**Other (e.g. Normalize.css, Node, Grunt, browser, operating system) (if applicable):**
|
||||
|
||||
|
||||
### Test case
|
||||
|
||||
<!-- Provide code samples on [Codepen](http://codepen.io/). -->
|
||||
|
||||
|
||||
### Steps to reproduce
|
||||
|
||||
<!-- Provide the steps needed to reproduce the issue given the above test case. -->
|
||||
|
||||
|
||||
### Expected behavior
|
||||
|
||||
<!-- What is the expected behavior? -->
|
||||
|
||||
|
||||
### Actual behavior
|
||||
|
||||
<!-- What is the actual behavior? -->
|
||||
Executable
+36
@@ -0,0 +1,36 @@
|
||||
<!--
|
||||
|
||||
We would love for you to contribute to Milligram and help us make this even better! Start reading this [document](https://github.com/milligram/milligram/blob/master/.github/contributing.md) to see it is not difficult as you might have imagined.
|
||||
|
||||
Submit a Pull Request
|
||||
==============================
|
||||
To submit a new feature, make sure that changes are done to the source code. [Follow our style guide](https://github.com/milligram/milligram/blob/master/.github/contributing.md#style-guide) and do not forget the tests and attach the link [Codepen](http://codepen.io/) along with the description.
|
||||
|
||||
Try to solve a problem for each pull request, this increases the chances of acceptance. When in doubt, open a [new issue](https://github.com/milligram/milligram/blob/master/.github/contributing.md#open-an-issue) so we can answer you. Look existing issues for ideas or to see if a similar issue has already been submitted.
|
||||
|
||||
1. Fork the Github repo: `git clone https://github.com/milligram/milligram.git`
|
||||
1. Create a new branch: `git checkout -b issuenumber-feature-name`
|
||||
1. Commit your changes: `git commit -m 'issuenumber-feature-name'`
|
||||
1. Push to the branch: `git push origin my-feature-name`
|
||||
1. Submit a pull request!
|
||||
|
||||
*Note: For issues relating to the site, please use the [milligram.github.io](https://github.com/milligram/milligram.github.io)*
|
||||
|
||||
Code of Conduct
|
||||
==============================
|
||||
Help us keep Milligram open and inclusive. Please read and follow our thoughts on [Code of Conduct](http://confcodeofconduct.com/).
|
||||
|
||||
License
|
||||
==============================
|
||||
By contributing your code, you agree to license your contribution under the [MIT license](https://github.com/milligram/milligram#license).
|
||||
|
||||
-->
|
||||
|
||||
|
||||
### Description
|
||||
|
||||
<!-- Are you fixing a bug? Implementing a new feature? Updating the documentation? Describe here something about your changes. Don't forget to add the link to the open issue, or to other pull request related. -->
|
||||
|
||||
### Code sample
|
||||
|
||||
<!-- Provide code samples on [Codepen](http://codepen.io/). -->
|
||||
Reference in New Issue
Block a user