Skip to content

Commit

Permalink
overhaul execution stacks, add tests, add prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydaly committed Jul 2, 2021
1 parent e33a227 commit 93cc0a9
Show file tree
Hide file tree
Showing 25 changed files with 5,801 additions and 3,291 deletions.
37 changes: 9 additions & 28 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,17 @@
{
"env": {
"es6": true,
"node": true,
"jest": true
"es6": true,
"node": true,
"jest": true
},
"extends": "eslint:recommended",
"extends": ["eslint:recommended", "prettier"],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single",
{ "allowTemplateLiterals": true }
],
"semi": [
"error",
"never"
],
"indent": [
"error",
2,
{ "SwitchCase": 1, "flatTernaryExpressions": true }
]
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {},
"globals": {
"expect": true,
"it": true
"expect": true,
"it": true
}
}
4 changes: 0 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ name: build

on: [pull_request, push]


jobs:
build:

runs-on: ubuntu-latest

strategy:
Expand Down Expand Up @@ -37,5 +35,3 @@ jobs:
COVERALLS_SERVICE_NAME: GithubActions
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
COVERALLS_GIT_BRANCH: ${{ env.BRANCH_NAME }}


5 changes: 5 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
coverage
node_modules
__tests__
*.test.js
dist
3 changes: 3 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"singleQuote": true
}
814 changes: 460 additions & 354 deletions README.md

Large diffs are not rendered by default.

0 comments on commit 93cc0a9

Please sign in to comment.