Skip to content

Commit 93cc0a9

Browse files
committed
overhaul execution stacks, add tests, add prettier
1 parent e33a227 commit 93cc0a9

25 files changed

+5801
-3291
lines changed

.eslintrc.json

Lines changed: 9 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,17 @@
11
{
22
"env": {
3-
"es6": true,
4-
"node": true,
5-
"jest": true
3+
"es6": true,
4+
"node": true,
5+
"jest": true
66
},
7-
"extends": "eslint:recommended",
7+
"extends": ["eslint:recommended", "prettier"],
88
"parserOptions": {
9-
"ecmaVersion": 2018,
10-
"sourceType": "module"
11-
},
12-
"rules": {
13-
"linebreak-style": [
14-
"error",
15-
"unix"
16-
],
17-
"quotes": [
18-
"error",
19-
"single",
20-
{ "allowTemplateLiterals": true }
21-
],
22-
"semi": [
23-
"error",
24-
"never"
25-
],
26-
"indent": [
27-
"error",
28-
2,
29-
{ "SwitchCase": 1, "flatTernaryExpressions": true }
30-
]
9+
"ecmaVersion": 2018,
10+
"sourceType": "module"
3111
},
12+
"rules": {},
3213
"globals": {
33-
"expect": true,
34-
"it": true
14+
"expect": true,
15+
"it": true
3516
}
3617
}

.github/workflows/build.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@ name: build
55

66
on: [pull_request, push]
77

8-
98
jobs:
109
build:
11-
1210
runs-on: ubuntu-latest
1311

1412
strategy:
@@ -37,5 +35,3 @@ jobs:
3735
COVERALLS_SERVICE_NAME: GithubActions
3836
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
3937
COVERALLS_GIT_BRANCH: ${{ env.BRANCH_NAME }}
40-
41-

.prettierignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
coverage
2+
node_modules
3+
__tests__
4+
*.test.js
5+
dist

.prettierrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"singleQuote": true
3+
}

README.md

Lines changed: 460 additions & 354 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)