Skip to content

Commit 58afba6

Browse files
committed
Initial code
1 parent 06cb57c commit 58afba6

128 files changed

Lines changed: 11586 additions & 2 deletions

File tree

Some content is hidden

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

.eslintignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modiles
2+
.cache
3+
.tmp
4+
dist

.eslintrc.cjs

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
es6: true,
5+
node: true,
6+
},
7+
parser: '@babel/eslint-parser',
8+
parserOptions: {
9+
ecmaVersion: 'latest',
10+
sourceType: 'module',
11+
requireConfigFile: false,
12+
babelOptions: {
13+
plugins: ['@babel/plugin-syntax-import-assertions'],
14+
},
15+
},
16+
extends: ['eslint:recommended'],
17+
rules: {
18+
'template-curly-spacing': 'off',
19+
'indent': 'off',
20+
'semi': ['error', 'always', { omitLastInOneLineBlock: true }],
21+
'quotes': ['warn', 'single'],
22+
'quote-props': ['warn', 'consistent-as-needed'],
23+
'object-shorthand': ['warn', 'properties'],
24+
},
25+
};

.gitignore

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# compiled output
2+
/dist
3+
/node_modules
4+
5+
# Logs
6+
logs
7+
*.log
8+
npm-debug.log*
9+
pnpm-debug.log*
10+
yarn-debug.log*
11+
yarn-error.log*
12+
lerna-debug.log*
13+
14+
# OS
15+
.DS_Store
16+
17+
# Tests
18+
/coverage
19+
/.nyc_output
20+
21+
# IDEs and editors
22+
/.idea
23+
.project
24+
.classpath
25+
.c9/
26+
*.launch
27+
.settings/
28+
*.sublime-workspace
29+
30+
# IDE - VSCode
31+
.vscode/*
32+
!.vscode/settings.json
33+
!.vscode/tasks.json
34+
!.vscode/launch.json
35+
!.vscode/extensions.json
36+
37+
# Project
38+
*.env
39+
*.tmp
40+
*test.js
41+
/build

.prettierrc.json

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

.puppeteerrc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"skipDownload": true,
3+
"experiments": {
4+
"macArmChromiumEnabled": true
5+
}
6+
}

0 commit comments

Comments
 (0)