Skip to content

Commit 2ea6d68

Browse files
committed
chore: initial commit
0 parents  commit 2ea6d68

File tree

588 files changed

+7266
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

588 files changed

+7266
-0
lines changed

.dockerignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Dockerfile
2+
.dockerignore
3+
*.md
4+
.git
5+
.gitignore
6+
.husky
7+
.vscode
8+
node_modules
9+
test
10+
.eslintrc.js
11+
.mocharc.js
12+
dist
13+
dist-bin
14+
15+
# yarn berry zero install
16+
.yarn/*
17+
!.yarn/cache
18+
!.yarn/patches
19+
!.yarn/plugins
20+
!.yarn/releases
21+
!.yarn/sdks
22+
!.yarn/versions

.eslintrc.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
module.exports = {
2+
env: {
3+
node: true,
4+
es2023: true,
5+
},
6+
parserOptions: {
7+
ecmaVersion: 2023,
8+
},
9+
extends: ["eslint:recommended", "prettier"],
10+
plugins: ["prettier"],
11+
rules: {
12+
"no-unused-vars": "off",
13+
"prettier/prettier": [
14+
"error",
15+
{
16+
semi: false,
17+
},
18+
],
19+
"mocha/no-exclusive-tests": "error",
20+
},
21+
overrides: [
22+
{
23+
files: ["test/**/*.js"],
24+
env: {
25+
mocha: true,
26+
},
27+
plugins: ["mocha"],
28+
},
29+
],
30+
}

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
node_modules
2+
test/**/*.actual.*
3+
dist
4+
dist-bin
5+
6+
# yarn berry zero install
7+
.yarn/*
8+
!.yarn/cache
9+
!.yarn/patches
10+
!.yarn/plugins
11+
!.yarn/releases
12+
!.yarn/sdks
13+
!.yarn/versions

.mocharc.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
"require": ["mocha-snap"]
3+
}

.vscode/settings.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"editor.codeActionsOnSave": {
3+
"source.fixAll.eslint": true
4+
},
5+
"eslint.validate": [
6+
"javascript"
7+
],
8+
"[javascript]": {
9+
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
10+
},
11+
"files.associations": {
12+
"*.dockerfile{,.snap}": "Dockerfile"
13+
}
14+
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)