Skip to content

Commit b109442

Browse files
author
devgioele
committed
add types and utils
1 parent a5d5f6c commit b109442

25 files changed

Lines changed: 6233 additions & 505 deletions

.eslintrc.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"extends": "@aboutbits/eslint-config/ts",
3+
"parserOptions": {
4+
"project": true
5+
},
6+
"ignorePatterns": ["node_modules", "dist"]
7+
}

.githooks/pre-commit

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
3+
set -e
4+
set -o pipefail
5+
6+
npm run checks

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
node_modules
2-
tsconfig.tsbuildinfo
2+
dist
3+
*.tsbuildinfo
4+
.eslintcache

0 commit comments

Comments
 (0)