-
Notifications
You must be signed in to change notification settings - Fork 16
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 15f209b
Showing
116 changed files
with
5,562 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,3 @@ | ||
{ | ||
"directory": "assets/vendor" | ||
} |
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,6 @@ | ||
files: [ | ||
"package.json" | ||
] | ||
plugins: | ||
prerelease: {} | ||
postrelease: {} |
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 @@ | ||
# http://editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
max_line_length = 80 | ||
indent_brace_style = 1TBS | ||
spaces_around_operators = true | ||
quote_type = auto | ||
|
||
[package.json] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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 @@ | ||
* text=auto |
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,35 @@ | ||
############################ | ||
# npm | ||
############################ | ||
node_modules | ||
npm-debug.log | ||
|
||
|
||
############################ | ||
# tmp, editor & OS files | ||
############################ | ||
.tmp | ||
*.swo | ||
*.swp | ||
*.swn | ||
*.swm | ||
.DS_STORE | ||
*# | ||
*~ | ||
.idea | ||
nbproject | ||
|
||
|
||
############################ | ||
# Tests | ||
############################ | ||
testApp | ||
coverage | ||
|
||
|
||
############################ | ||
# Other | ||
############################ | ||
.node_history | ||
.sass-cache/ | ||
assets/vendor |
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,80 @@ | ||
|
||
{ | ||
"disallowSpacesInNamedFunctionExpression": { | ||
"beforeOpeningRoundBrace": true | ||
}, | ||
"disallowSpacesInFunctionExpression": { | ||
"beforeOpeningRoundBrace": true | ||
}, | ||
"disallowSpacesInAnonymousFunctionExpression": { | ||
"beforeOpeningRoundBrace": true | ||
}, | ||
"disallowSpacesInFunctionDeclaration": { | ||
"beforeOpeningRoundBrace": true | ||
}, | ||
"disallowEmptyBlocks": true, | ||
"disallowSpacesInsideArrayBrackets": true, | ||
"disallowSpacesInsideParentheses": true, | ||
"disallowQuotedKeysInObjects": true, | ||
"disallowSpaceAfterObjectKeys": true, | ||
"disallowSpaceAfterPrefixUnaryOperators": true, | ||
"disallowSpaceBeforePostfixUnaryOperators": true, | ||
"disallowSpaceBeforeBinaryOperators": [ | ||
"," | ||
], | ||
"disallowMixedSpacesAndTabs": true, | ||
"disallowTrailingWhitespace": true, | ||
"excludeFiles": ["node_modules/**"], | ||
"maximumLineLength": 100, | ||
"disallowTrailingComma": true, | ||
"disallowYodaConditions": true, | ||
"disallowKeywords": [ | ||
"with" | ||
], | ||
"disallowMultipleLineBreaks": true, | ||
"disallowMultipleVarDecl": true, | ||
"requireSpaceBeforeBlockStatements": true, | ||
"requireSpacesInConditionalExpression": true, | ||
"requireBlocksOnNewline": 1, | ||
"requireCommaBeforeLineBreak": true, | ||
"requireSpaceBeforeBinaryOperators": true, | ||
"requireSpaceAfterBinaryOperators": true, | ||
"requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties", | ||
"requireLineFeedAtFileEnd": true, | ||
"requireCapitalizedConstructors": true, | ||
"requireDotNotation": true, | ||
"requireSpacesInForStatement": true, | ||
"requireSpaceBetweenArguments": true, | ||
"requireCurlyBraces": [ | ||
"do" | ||
], | ||
"requireSpaceBeforeKeywords": [ | ||
"else" | ||
], | ||
"requireSpaceAfterKeywords": [ | ||
"if", | ||
"else", | ||
"for", | ||
"while", | ||
"do", | ||
"switch", | ||
"case", | ||
"return", | ||
"try", | ||
"catch", | ||
"typeof" | ||
], | ||
"requirePaddingNewLinesBeforeLineComments": { | ||
"allExcept": "firstAfterCurly" | ||
}, | ||
"safeContextKeyword": [ | ||
"self", | ||
"_this" | ||
], | ||
"validateLineBreaks": "LF", | ||
"validateIndentation": 2, | ||
"validateQuoteMarks": { | ||
"mark": "'", | ||
"escape": true | ||
} | ||
} |
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,15 @@ | ||
{ | ||
"node": true, // Defines globals available when your code is running inside of the Node runtime environment | ||
"esnext": true, // Tells JSHint that your code uses ECMAScript 6 specific syntax. | ||
"bitwise": true, // Prohibits the use of bitwise operators such as ^ (XOR), | (OR) and others. | ||
"curly": false, // Always put curly braces around blocks in loops and conditionals | ||
"noarg": true, // Prohibits the use of arguments.caller and arguments.callee. | ||
"undef": true, // Prohibits the use of explicitly undeclared variables. | ||
"unused": "vars", // Warns when you define and never use your variables. | ||
"strict": true, // Requires all functions to run in ECMAScript 5's strict mode. | ||
"eqnull": true, // Suppresses warnings about == null comparisons | ||
"eqeqeq": true, // Prohibits the use of == and != in favor of === and !==. | ||
"browser": true, // This option defines globals exposed by modern browsers | ||
"mootools": true, // This option defines globals exposed by the MooTools JavaScript framework. | ||
"mocha": true // This option defines globals exposed by the "BDD" and "TDD" UIs of the Mocha unit testing framework. | ||
} |
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,16 @@ | ||
.idea | ||
.project | ||
*.sublime-* | ||
.DS_Store | ||
*.seed | ||
*.log | ||
*.csv | ||
*.dat | ||
*.out | ||
*.pid | ||
*.swp | ||
*.swo | ||
node_modules | ||
coverage | ||
*.tgz | ||
*.xml |
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 @@ | ||
unsafe-perm=true |
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,7 @@ | ||
language: node_js | ||
node_js: | ||
- "stable" | ||
- "0.12" | ||
- "0.11" | ||
- "0.10" | ||
- "iojs" |
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,9 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright © 2015 Kiko Beats | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
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,56 @@ | ||
# Itch | ||
|
||
<h1 align="center"> | ||
<br> | ||
<img src="" alt="Itch"> | ||
<br> | ||
<br> | ||
</h1> | ||
|
||
![Last version](https://img.shields.io/github/tag/Kikobeats/itch.svg?style=flat-square) | ||
[![Build Status](http://img.shields.io/travis/Kikobeats/itch/master.svg?style=flat-square)](https://travis-ci.org/Kikobeats/itch) | ||
[![Coverage Status](http://img.shields.io/coveralls/Kikobeats/itch/master.svg?style=flat-square)](https://coveralls.io/r/Kikobeats/itch?branch=master) | ||
[![Dependency status](http://img.shields.io/david/Kikobeats/itch.svg?style=flat-square)](https://david-dm.org/Kikobeats/itch) | ||
[![Dev Dependencies Status](http://img.shields.io/david/dev/Kikobeats/itch.svg?style=flat-square)](https://david-dm.org/Kikobeats/itch#info=devDependencies) | ||
[![NPM Status](http://img.shields.io/npm/dm/itch.svg?style=flat-square)](https://www.npmjs.org/package/itch) | ||
[![Donate](https://img.shields.io/badge/donate-paypal-blue.svg?style=flat-square)](https://paypal.me/Kikobeats) | ||
|
||
**NOTE:** more badges availables in [shields.io](http://shields.io/) | ||
|
||
> Ghost theme for brands | ||
## Install | ||
|
||
```bash | ||
npm install itch --save | ||
``` | ||
|
||
## Usage | ||
|
||
```js | ||
var Itch = require('itch'); | ||
``` | ||
|
||
## API | ||
|
||
### Itch(input, [options]) | ||
|
||
#### input | ||
|
||
*Required* | ||
Type: `string` | ||
|
||
Lorem ipsum. | ||
|
||
#### options | ||
|
||
##### foo | ||
|
||
Type: `boolean` | ||
Default: `false` | ||
|
||
Lorem ipsum. | ||
|
||
## License | ||
|
||
MIT © [Kiko Beats](http://kikobeats.com) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.