Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Sep 15, 2015
0 parents commit 15f209b
Show file tree
Hide file tree
Showing 116 changed files with 5,562 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"directory": "assets/vendor"
}
6 changes: 6 additions & 0 deletions .bumpedrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
files: [
"package.json"
]
plugins:
prerelease: {}
postrelease: {}
22 changes: 22 additions & 0 deletions .editorconfig
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
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
35 changes: 35 additions & 0 deletions .gitignore
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
80 changes: 80 additions & 0 deletions .jscsrc
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
}
}
15 changes: 15 additions & 0 deletions .jshintrc
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.
}
16 changes: 16 additions & 0 deletions .npmignore
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
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
unsafe-perm=true
7 changes: 7 additions & 0 deletions .travis.yml
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"
9 changes: 9 additions & 0 deletions LICENSE.md
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.
56 changes: 56 additions & 0 deletions README.md
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)
8 changes: 8 additions & 0 deletions assets/css/itch.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added assets/images/ghostdev.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/twitterbg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/twitterpic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 15f209b

Please sign in to comment.