Skip to content

Commit ab3f79c

Browse files
committed
init
0 parents  commit ab3f79c

File tree

7 files changed

+3993
-0
lines changed

7 files changed

+3993
-0
lines changed

.eslintrc.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
env: {
3+
es2021: true,
4+
node: true,
5+
},
6+
extends: ['airbnb-base', 'eslint-config-prettier'],
7+
parser: '@typescript-eslint/parser',
8+
parserOptions: {
9+
ecmaVersion: 'latest',
10+
sourceType: 'module',
11+
},
12+
plugins: ['@typescript-eslint'],
13+
rules: {},
14+
}

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
lib

.prettierrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"trailingComma": "all",
3+
"tabWidth": 2,
4+
"singleQuote": true,
5+
"semi": false
6+
}
7+

0 commit comments

Comments
 (0)