-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 6ce7c66
Showing
13 changed files
with
757 additions
and
0 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,194 @@ | ||
## GITATTRIBUTES FOR WEB PROJECTS | ||
# | ||
# These settings are for any web project. | ||
# | ||
# Details per file setting: | ||
# text These files should be normalized (i.e. convert CRLF to LF). | ||
# binary These files are binary and should be left untouched. | ||
# | ||
# Note that binary is a macro for -text -diff. | ||
###################################################################### | ||
|
||
## AUTO-DETECT - Handle line endings automatically for files detected | ||
## as text and leave all files detected as binary untouched. | ||
## This will handle all files NOT defined below. | ||
* text=auto | ||
|
||
## SOURCE CODE | ||
*.bat text | ||
*.coffee text | ||
*.css text | ||
*.htm text | ||
*.html text | ||
*.inc text | ||
*.ini text | ||
*.js text | ||
*.jsx text | ||
*.json text | ||
*.less text | ||
*.php text | ||
*.pl text | ||
*.py text | ||
*.rb text | ||
*.sass text | ||
*.scm text | ||
*.scss text | ||
*.sh text | ||
*.sql text | ||
*.styl text | ||
*.ts text | ||
*.xml text | ||
*.xhtml text | ||
|
||
## DOCUMENTATION | ||
*.markdown text | ||
*.md text | ||
*.mdwn text | ||
*.mdown text | ||
*.mkd text | ||
*.mkdn text | ||
*.mdtxt text | ||
*.mdtext text | ||
*.txt text | ||
AUTHORS text | ||
CHANGELOG text | ||
CHANGES text | ||
CONTRIBUTING text | ||
COPYING text | ||
INSTALL text | ||
license text | ||
LICENSE text | ||
NEWS text | ||
readme text | ||
*README* text | ||
TODO text | ||
|
||
## TEMPLATES | ||
*.dot text | ||
*.ejs text | ||
*.haml text | ||
*.handlebars text | ||
*.hbs text | ||
*.hbt text | ||
*.jade text | ||
*.latte text | ||
*.mustache text | ||
*.phtml text | ||
*.tmpl text | ||
|
||
## LINTERS | ||
.csslintrc text | ||
.eslintrc text | ||
.jscsrc text | ||
.jshintrc text | ||
.jshintignore text | ||
.stylelintrc text | ||
|
||
## CONFIGS | ||
*.bowerrc text | ||
*.cnf text | ||
*.conf text | ||
*.config text | ||
.editorconfig text | ||
.gitattributes text | ||
.gitconfig text | ||
.gitignore text | ||
.htaccess text | ||
*.npmignore text | ||
*.yaml text | ||
*.yml text | ||
Makefile text | ||
makefile text | ||
|
||
## HEROKU | ||
Procfile text | ||
.slugignore text | ||
|
||
## GRAPHICS | ||
*.ai filter=lfs diff=lfs merge=lfs -text | ||
*.bmp binary | ||
*.eps filter=lfs diff=lfs merge=lfs -text | ||
*.gif binary | ||
*.ico binary | ||
*.jng binary | ||
*.jp2 binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.jpx binary | ||
*.jxr binary | ||
*.pdf binary | ||
*.png binary | ||
*.psb binary | ||
*.psd filter=lfs diff=lfs merge=lfs -text | ||
*.svg text | ||
*.svgz binary | ||
*.tif filter=lfs diff=lfs merge=lfs -text | ||
*.tiff filter=lfs diff=lfs merge=lfs -text | ||
*.wbmp binary | ||
*.webp binary | ||
|
||
## AUDIO | ||
*.kar filter=lfs diff=lfs merge=lfs -text | ||
*.m4a filter=lfs diff=lfs merge=lfs -text | ||
*.mid filter=lfs diff=lfs merge=lfs -text | ||
*.midi filter=lfs diff=lfs merge=lfs -text | ||
*.mp3 filter=lfs diff=lfs merge=lfs -text | ||
*.ogg filter=lfs diff=lfs merge=lfs -text | ||
*.ra filter=lfs diff=lfs merge=lfs -text | ||
|
||
## VIDEO | ||
*.3gpp filter=lfs diff=lfs merge=lfs -text | ||
*.3gp filter=lfs diff=lfs merge=lfs -text | ||
*.as filter=lfs diff=lfs merge=lfs -text | ||
*.asf filter=lfs diff=lfs merge=lfs -text | ||
*.asx filter=lfs diff=lfs merge=lfs -text | ||
*.fla filter=lfs diff=lfs merge=lfs -text | ||
*.flv filter=lfs diff=lfs merge=lfs -text | ||
*.m4v filter=lfs diff=lfs merge=lfs -text | ||
*.mng filter=lfs diff=lfs merge=lfs -text | ||
*.mov filter=lfs diff=lfs merge=lfs -text | ||
*.mp4 filter=lfs diff=lfs merge=lfs -text | ||
*.mpeg filter=lfs diff=lfs merge=lfs -text | ||
*.mpg filter=lfs diff=lfs merge=lfs -text | ||
*.swc filter=lfs diff=lfs merge=lfs -text | ||
*.swf filter=lfs diff=lfs merge=lfs -text | ||
*.webm filter=lfs diff=lfs merge=lfs -text | ||
|
||
## ARCHIVES | ||
*.7z binary | ||
*.gz binary | ||
*.rar binary | ||
*.tar binary | ||
*.zip binary | ||
|
||
## FONTS | ||
*.ttf binary | ||
*.eot binary | ||
*.otf binary | ||
*.woff binary | ||
*.woff2 binary | ||
|
||
## EXECUTABLES | ||
*.exe binary | ||
*.pyc binary | ||
|
||
|
||
# Documents | ||
*.doc diff=astextplain | ||
*.DOC diff=astextplain | ||
*.docx diff=astextplain | ||
*.DOCX diff=astextplain | ||
*.dot diff=astextplain | ||
*.DOT diff=astextplain | ||
*.pdf diff=astextplain | ||
*.PDF diff=astextplain | ||
*.rtf diff=astextplain | ||
*.RTF diff=astextplain | ||
*.md text | ||
*.adoc text | ||
*.textile text | ||
*.mustache text | ||
*.csv text | ||
*.tab text | ||
*.tsv text | ||
*.sql text |
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,38 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: 'bug' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Desktop (please complete the following information):** | ||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
**Smartphone (please complete the following information):** | ||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS8.1] | ||
- Browser [e.g. stock browser, safari] | ||
- Version [e.g. 22] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
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,20 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: 'enhancement' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
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 @@ | ||
--- | ||
name: User Question | ||
about: Ask us a question | ||
title: '' | ||
labels: 'question' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**My question:** | ||
Briefly describe your question. What are you trying to accomplish? | ||
|
||
**I've already tried:** | ||
Help us help you by letting us know what you have already tried in your efforts to accomplish this. |
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 @@ | ||
Describe concisely the changes implemented by the code on this pull request. | ||
|
||
- **Added:** | ||
- Added stuff on this PR. | ||
- **Changed:** | ||
- Changed stuff on this PR. | ||
- **Deprecated:** | ||
- Deprecated stuff on this PR. | ||
- **Removed:** | ||
- Removed stuff on this PR. | ||
- **Fixed:** | ||
- Fixed stuff on this PR. | ||
- **Security:** | ||
- Security stuff on this PR. |
Oops, something went wrong.