1
0
Fork 0
mirror of https://github.com/kdeldycke/awesome-falsehood.git synced 2024-11-20 11:35:56 -05:00
falsehood/CONTRIBUTING.md

117 lines
3.2 KiB
Markdown
Raw Normal View History

2016-09-08 19:35:58 -04:00
# Contributing
Your contributions are always welcome! Here are some guidelines.
2016-09-08 19:35:58 -04:00
## Good Candidates
2016-09-08 19:35:58 -04:00
Before contributing, make sure the new link you'd like to add is a good
candidate.
2016-09-08 19:35:58 -04:00
Here is a non-restrictive list of items which are good candidates for inclusion
in this awesome list.
2016-09-08 19:35:58 -04:00
### Falsehood Articles
2016-09-08 19:35:58 -04:00
Articles following the *falsehood* scheme are prime candidates for inclusion in
this awesome list.
These articles starts with the hypothesis that developers have a naive, simple
view of the subject at hand. Then proceed to list a set of candid assumptions
that might be held by such programmers. Each one is intentionally false, and
sometimes illustrated by a counter-example.
A list of falsehood is crafted as a progression that is designed to refine
concepts. Having read the whole list of falsehood, the reader should possess a
global, if not complete, overview of the domain being targeted by the article,
including most, if not all, its pitfalls, edges-cases and inconsistencies.
In the worst case, these articles might provoke an emotional reaction and cause
flipping table. `(╯°□°)╯︵ ┻━┻`
Articles featuring items that are applicable to a product and a product only
can't really be considered as generic falsehood articles and should be avoided.
### Libraries
When possible, we provide a list of programming libraries or modules that may
solve, or try to, the complexities and idiosyncrasies pointed by the
*falsehood* articles above.
So we can put back tables in place. `┬─┬ ( ゜-゜ノ)`
2016-09-08 19:35:58 -04:00
### Data Structures
Data models and structures generic enough to cover and address most of the
falsehoods are also welcome in this page.
## Pull-Request and Issue
2016-09-08 19:35:58 -04:00
- Search past and current issues and pull-requests for previous suggestions
before making a new one, as yours may be a duplicate or a work in progress.
- Only one list item per commit.
- Only one commit per pull-request. Always squash commits after applying
changes.
2016-09-08 19:35:58 -04:00
- Check your spelling and grammar.
- Remove any trailing whitespaces.
- Use spaces, no tabs, for indention.
- Send a pull-request with the reason why the linked resource is awesome.
## Linting
First and foremost, have your pull-request pass the [official Awesome List's
linter](https://github.com/sindresorhus/awesome-lint). No extra work is
required here as it is [already integrated by the way of GitHub
actions](./.github/workflows/).
To run the linter locally, do:
```
$ npm install --global awesome-lint
$ awesome-lint
```
## Additional rules
Here are some formatting style not enforced by the linter (yet), which are
specific to this awesome list.
2017-09-19 10:51:51 -04:00
- Cut long lines of text after 80 characters. Only exception is to let Markdown
content be properly rendered.
2016-09-08 19:35:58 -04:00
- If one of these rule conflict with the linter, the linter's rule should takes
precedence. Apply it.
## List items
- Link title must be [title-cased](http://titlecapitalization.com), AP style.
- Link title must be stripped out of the "*Programmers believe*" part to keep
it compact (we all know the scheme).
- URL must use HTTPs protocol if available.
- Keep descriptions concise, maximum number of characters is 350.
## Sections
- Sections must be alphabetically sorted.
- Add a section if needed.
- Eventually add a description to the section.