Skip to content

Commit

Permalink
Merge pull request #7 from philmander/v1
Browse files Browse the repository at this point in the history
v1
  • Loading branch information
philmander authored Dec 2, 2017
2 parents 523a5f7 + 2379f9a commit 9ca8378
Show file tree
Hide file tree
Showing 36 changed files with 2,347 additions and 1,060 deletions.
9 changes: 0 additions & 9 deletions .babelrc

This file was deleted.

13 changes: 0 additions & 13 deletions .editorconfig

This file was deleted.

89 changes: 89 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
module.exports = {
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"jest/globals": true
},
"globals": {
"process": true
},
"extends": ["eslint:recommended", "plugin:react/recommended"],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"plugins": [
"react",
"jest",
],
"settings": {
"react": {
"pragma": "h"
}
},
"rules": {
"curly" : [
"error", "all"
],
"brace-style": [
1, "1tbs", {
"allowSingleLine": false
}
],
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-unused-vars": [
"error",
{ "varsIgnorePattern": "^h$" }
],
"comma-dangle": [
"error",
"always-multiline"
],
"no-multiple-empty-lines" : [
"error",
{ max: 1 }
],
"padded-blocks" : [
"error",
{ "blocks" : "never" }
],
"react/forbid-component-props": [
"off"
],
"react/no-unknown-property" : [
"off"
],
"react/prop-types" : [
"off"
],
"react/jsx-key" : [
"off"
],
"react/display-name" : [
"off"
],
"react/no-direct-mutation-state" : [
"warn"
]
}
};
54 changes: 0 additions & 54 deletions .eslintrc.json

This file was deleted.

66 changes: 54 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,22 +1,64 @@
# Generated
.idea
lib

# Dependency directories
node_modules
jspm_packages

# Other
.npm
.node_repl_history
coverage
# Created by .ignore support plugin (hsz.mobi)
### Node template
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.idea

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

lib
dist
6 changes: 3 additions & 3 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.gitignore
.idea
src
tsconfig.json
tslint.json
test
.DS_Store
README.md
.eslintrc.js
*.tgz
40 changes: 0 additions & 40 deletions DOM.js

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ 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.
SOFTWARE.
Loading

0 comments on commit 9ca8378

Please sign in to comment.