Skip to content

Commit

Permalink
init create-react-library@2.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
yershalom committed Feb 10, 2019
0 parents commit d4d007e
Show file tree
Hide file tree
Showing 21 changed files with 46,057 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .babelrc
@@ -0,0 +1,9 @@
{
"presets": [
["env", {
"modules": false
}],
"stage-0",
"react"
]
}
9 changes: 9 additions & 0 deletions .editorconfig
@@ -0,0 +1,9 @@
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
23 changes: 23 additions & 0 deletions .eslintrc
@@ -0,0 +1,23 @@
{
"parser": "babel-eslint",
"extends": [
"standard",
"standard-react"
],
"env": {
"es6": true
},
"plugins": [
"react"
],
"parserOptions": {
"sourceType": "module"
},
"rules": {
// don't force es6 functions to include space before paren
"space-before-function-paren": 0,

// allow specifying true explicitly for boolean props
"react/jsx-boolean-value": 0
}
}
22 changes: 22 additions & 0 deletions .gitignore
@@ -0,0 +1,22 @@

# See https://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
node_modules

# builds
build
dist
.rpt2_cache

# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
4 changes: 4 additions & 0 deletions .travis.yml
@@ -0,0 +1,4 @@
language: node_js
node_js:
- 9
- 8
31 changes: 31 additions & 0 deletions README.md
@@ -0,0 +1,31 @@
# react-chuck

> Random Chuck Norris jokes for react
[![NPM](https://img.shields.io/npm/v/react-chuck.svg)](https://www.npmjs.com/package/react-chuck) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)

## Install

```bash
npm install --save react-chuck
```

## Usage

```jsx
import React, { Component } from 'react'

import MyComponent from 'react-chuck'

class Example extends Component {
render () {
return (
<MyComponent />
)
}
}
```

## License

MIT © [yershalom](https://github.com/yershalom)
2,164 changes: 2,164 additions & 0 deletions example/README.md

Large diffs are not rendered by default.

0 comments on commit d4d007e

Please sign in to comment.