Skip to content

Commit 89c5f3d

Browse files
committed
Initial commit
0 parents  commit 89c5f3d

16 files changed

+7034
-0
lines changed

.editorconfig

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
indent_style = space
6+
indent_size = 2
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true

.env.example

Whitespace-only changes.

.eslintrc

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"commonjs": true,
5+
"es6": true,
6+
"node": true,
7+
"jest": true
8+
},
9+
"parser": "@typescript-eslint/parser",
10+
"extends": [
11+
"eslint:recommended",
12+
"plugin:@typescript-eslint/recommended",
13+
"plugin:prettier/recommended",
14+
"prettier",
15+
"prettier/@typescript-eslint"
16+
],
17+
"parserOptions": {
18+
"sourceType": "module",
19+
"ecmaVersion": 2020
20+
},
21+
"rules": {
22+
"linebreak-style": ["error", "unix"],
23+
"no-empty": 1,
24+
"no-undef": 1,
25+
"no-useless-catch": 1,
26+
"no-prototype-builtins": 1,
27+
"no-constant-condition": 0,
28+
"no-useless-escape": 0,
29+
"no-console": "error",
30+
"eqeqeq": ["error", "smart"],
31+
"capitalized-comments": [
32+
"warn",
33+
"always",
34+
{
35+
"ignoreInlineComments": true,
36+
"ignoreConsecutiveComments": true
37+
}
38+
],
39+
"@typescript-eslint/no-namespace": 0,
40+
"@typescript-eslint/no-explicit-any": 0,
41+
"@typescript-eslint/explicit-module-boundary-types": 0,
42+
"@typescript-eslint/no-unused-vars": "warn",
43+
"@typescript-eslint/no-inferrable-types": 0,
44+
"@typescript-eslint/no-non-null-assertion": 0,
45+
"@typescript-eslint/no-var-requires": 0,
46+
"@typescript-eslint/naming-convention": [
47+
"error",
48+
{
49+
"selector": "default",
50+
"format": ["camelCase"],
51+
"leadingUnderscore": "allow",
52+
"trailingUnderscore": "allowSingleOrDouble"
53+
},
54+
{
55+
"selector": "variable",
56+
"format": ["camelCase", "UPPER_CASE"],
57+
"leadingUnderscore": "allow",
58+
"trailingUnderscore": "allowSingleOrDouble"
59+
},
60+
{
61+
"selector": "parameter",
62+
"format": ["camelCase"],
63+
"trailingUnderscore": "allowSingleOrDouble"
64+
},
65+
{
66+
"selector": "typeLike",
67+
"format": ["PascalCase"],
68+
"trailingUnderscore": "allowSingleOrDouble"
69+
},
70+
{
71+
"selector": "objectLiteralProperty",
72+
"format": null
73+
},
74+
{
75+
"selector": "typeProperty",
76+
"format": null
77+
}
78+
]
79+
}
80+
}

.gitignore

+122
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
/tmp
2+
/dist
3+
.env*
4+
!.env.example
5+
/result*
6+
7+
# Logs
8+
logs
9+
*.log
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
lerna-debug.log*
14+
15+
# Diagnostic reports (https://nodejs.org/api/report.html)
16+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
17+
18+
# Runtime data
19+
pids
20+
*.pid
21+
*.seed
22+
*.pid.lock
23+
24+
# Directory for instrumented libs generated by jscoverage/JSCover
25+
lib-cov
26+
27+
# Coverage directory used by tools like istanbul
28+
coverage
29+
*.lcov
30+
31+
# nyc test coverage
32+
.nyc_output
33+
34+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
35+
.grunt
36+
37+
# Bower dependency directory (https://bower.io/)
38+
bower_components
39+
40+
# node-waf configuration
41+
.lock-wscript
42+
43+
# Compiled binary addons (https://nodejs.org/api/addons.html)
44+
build/Release
45+
46+
# Dependency directories
47+
node_modules/
48+
jspm_packages/
49+
50+
# Snowpack dependency directory (https://snowpack.dev/)
51+
web_modules/
52+
53+
# TypeScript cache
54+
*.tsbuildinfo
55+
56+
# Optional npm cache directory
57+
.npm
58+
59+
# Optional eslint cache
60+
.eslintcache
61+
62+
# Microbundle cache
63+
.rpt2_cache/
64+
.rts2_cache_cjs/
65+
.rts2_cache_es/
66+
.rts2_cache_umd/
67+
68+
# Optional REPL history
69+
.node_repl_history
70+
71+
# Output of 'npm pack'
72+
*.tgz
73+
74+
# Yarn Integrity file
75+
.yarn-integrity
76+
77+
# dotenv environment variables file
78+
.env
79+
.env.test
80+
81+
# parcel-bundler cache (https://parceljs.org/)
82+
.cache
83+
.parcel-cache
84+
85+
# Next.js build output
86+
.next
87+
out
88+
89+
# Nuxt.js build / generate output
90+
.nuxt
91+
dist
92+
93+
# Gatsby files
94+
.cache/
95+
# Comment in the public line in if your project uses Gatsby and not Next.js
96+
# https://nextjs.org/blog/next-9-1#public-directory-support
97+
# public
98+
99+
# vuepress build output
100+
.vuepress/dist
101+
102+
# Serverless directories
103+
.serverless/
104+
105+
# FuseBox cache
106+
.fusebox/
107+
108+
# DynamoDB Local files
109+
.dynamodb/
110+
111+
# TernJS port file
112+
.tern-port
113+
114+
# Stores VSCode versions used for testing VSCode extensions
115+
.vscode-test
116+
117+
# yarn v2
118+
.yarn/cache
119+
.yarn/unplugged
120+
.yarn/build-state.yml
121+
.yarn/install-state.gz
122+
.pnp.*

.gitlab-ci.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
variables:
2+
GIT_SUBMODULE_STRATEGY: recursive
3+
4+
stages:
5+
- check
6+
7+
image: registry.gitlab.com/matrixai/engineering/maintenance/gitlab-runner
8+
9+
lint:
10+
stage: check
11+
interruptible: true
12+
script:
13+
- >
14+
nix-shell -I nixpkgs=./pkgs.nix --packages nodejs --run '
15+
npm install;
16+
npm run lint;
17+
'
18+
19+
test:
20+
stage: check
21+
interruptible: true
22+
script:
23+
- >
24+
nix-shell -I nixpkgs=./pkgs.nix --packages nodejs --run '
25+
npm install;
26+
npm run test;
27+
'

.npmignore

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.*
2+
/nix
3+
/pkgs.nix
4+
/default.nix
5+
/shell.nix
6+
/release.nix
7+
/tsconfig.json
8+
/tsconfig.build.json
9+
/jest.config.js
10+
/src
11+
/tests
12+
/tmp
13+
/docs
14+
/benches

.prettierrc

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

0 commit comments

Comments
 (0)