Skip to content
This repository has been archived by the owner on Aug 4, 2021. It is now read-only.

Commit

Permalink
Refactorings from #331 (#346)
Browse files Browse the repository at this point in the history
* Refactorings from #331

* Update dependencies

* Update dependencies
  • Loading branch information
lukastaegert committed Oct 3, 2018
1 parent d449220 commit 6c93eb3
Show file tree
Hide file tree
Showing 32 changed files with 3,657 additions and 1,204 deletions.
26 changes: 0 additions & 26 deletions .eslintrc

This file was deleted.

43 changes: 43 additions & 0 deletions .eslintrc.json
@@ -0,0 +1,43 @@
{
"root": true,
"rules": {
"indent": [ 2, "tab", { "SwitchCase": 1 } ],
"semi": [ 2, "always" ],
"keyword-spacing": [ 2, { "before": true, "after": true } ],
"space-before-blocks": [ 2, "always" ],
"no-mixed-spaces-and-tabs": [ 2, "smart-tabs" ],
"no-cond-assign": 0,
"no-unused-vars": 2,
"object-shorthand": [ 2, "always" ],
"no-const-assign": 2,
"no-class-assign": 2,
"no-this-before-super": 2,
"no-var": 2,
"no-unreachable": 2,
"valid-typeof": 2,
"quote-props": [ 2, "as-needed" ],
"one-var": [ 2, "never" ],
"prefer-arrow-callback": 2,
"prefer-const": [ 2, { "destructuring": "all" } ],
"arrow-spacing": 2
},
"env": {
"es6": true,
"browser": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings"
],
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
},
"settings": {
"import/ignore": [ 0, [
"\\.path.js$"
] ]
}
}
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -2,4 +2,4 @@
node_modules
.gobble*
dist
!test/node_modules
!test/**/node_modules
6 changes: 6 additions & 0 deletions .huskyrc
@@ -0,0 +1,6 @@
{
"hooks": {
"post-commit": "git reset",
"pre-commit": "lint-staged"
}
}
7 changes: 7 additions & 0 deletions .lintstagedrc
@@ -0,0 +1,7 @@
{
"{src/**/*,test/test,test/**/_config}.js": [
"prettier --write",
"eslint --fix",
"git add"
]
}
5 changes: 5 additions & 0 deletions .prettierrc
@@ -0,0 +1,5 @@
{
"singleQuote": true,
"useTabs": true,
"printWidth": 100
}
5 changes: 2 additions & 3 deletions .travis.yml
@@ -1,10 +1,9 @@
sudo: false
language: node_js
node_js:
- "node"
- "8"
- "10"
env:
global:
- BUILD_TIMEOUT=10000
install: npm install
before_install:
- if [[ $TRAVIS_NODE_VERSION -lt 7 ]]; then npm install --global npm@4; fi

0 comments on commit 6c93eb3

Please sign in to comment.