Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
asarzina committed Sep 16, 2018
0 parents commit 6377fa9
Show file tree
Hide file tree
Showing 24 changed files with 20,202 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .babelrc
@@ -0,0 +1,13 @@
{
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"env": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}
}
25 changes: 25 additions & 0 deletions .eslintrc.js
@@ -0,0 +1,25 @@
module.exports = {
extends: [
'airbnb',
'plugin:jest/recommended',
],
plugins: [
'import',
'jest',
],
env: {
node: true,
browser: true,
'jest/globals': true,
},
rules: {
'react/jsx-filename-extension': [
1,
{
extensions: ['.js', '.jsx'],
}
],
'import/prefer-default-export': 'off',
'react/prop-types': [0],
}
};
44 changes: 44 additions & 0 deletions .gitignore
@@ -0,0 +1,44 @@
# --------------------
# OSX Files
# --------------------
.DS_Store

# --------------------
# Windows Files
# --------------------
Thumbs.db

# --------------------
# IntelliJ Files
# --------------------
*.iml
*.ipr
*.iws
.idea/

# --------------------
# Visual Studio Code
# --------------------
.vscode

# --------------------
# Node Files
# --------------------
.nodemonignore
npm-debug.log
node_modules/

# --------------------
# SASS Files
# --------------------
.sass-cache/

# --------------------
# user specific
# --------------------
coverage
!.gitkeep
todo.txt
build/
dist/
temp/
1 change: 1 addition & 0 deletions .nvmrc
@@ -0,0 +1 @@
v8.11
39 changes: 39 additions & 0 deletions README.md
@@ -0,0 +1,39 @@
# React Cookie Law

A React Cookie Banner component GDPR compliance.

## Install

```
yarn add react-cookie-law
```

or

```
npm install --save react-cookie-law
```

## Usage

TODO...

## Test

```
yarn test
```

or

```
npm test
```

# Author

[Palmabit](https://www.palmabit.com)

# Licence

[See the MIT License](http://opensource.org/licenses/MIT)

0 comments on commit 6377fa9

Please sign in to comment.