Skip to content

Commit 0573cd4

Browse files
committed
chore: updating to new templating
1 parent 2bf2450 commit 0573cd4

35 files changed

+8865
-3134
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

.eslintrc

+178
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,178 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"commonjs": true,
5+
"es2021": 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+
],
16+
"plugins": [
17+
"import"
18+
],
19+
"parserOptions": {
20+
"project": "tsconfig.json",
21+
"sourceType": "module"
22+
},
23+
"rules": {
24+
"linebreak-style": ["error", "unix"],
25+
"no-empty": 1,
26+
"no-useless-catch": 1,
27+
"no-prototype-builtins": 1,
28+
"no-constant-condition": 0,
29+
"no-useless-escape": 0,
30+
"no-console": "error",
31+
"no-restricted-globals": [
32+
"error",
33+
{
34+
"name": "global",
35+
"message": "Use `globalThis` instead"
36+
},
37+
{
38+
"name": "window",
39+
"message": "Use `globalThis` instead"
40+
}
41+
],
42+
"require-yield": 0,
43+
"eqeqeq": ["error", "smart"],
44+
"spaced-comment": [
45+
"warn",
46+
"always",
47+
{
48+
"line": {
49+
"exceptions": ["-"]
50+
},
51+
"block": {
52+
"exceptions": ["*"]
53+
},
54+
"markers": ["/"]
55+
}
56+
],
57+
"capitalized-comments": [
58+
"warn",
59+
"always",
60+
{
61+
"ignoreInlineComments": true,
62+
"ignoreConsecutiveComments": true
63+
}
64+
],
65+
"curly": [
66+
"error",
67+
"multi-line",
68+
"consistent"
69+
],
70+
"import/order": [
71+
"error",
72+
{
73+
"groups": [
74+
"type",
75+
"builtin",
76+
"external",
77+
"internal",
78+
"index",
79+
"sibling",
80+
"parent",
81+
"object"
82+
],
83+
"pathGroups": [
84+
{
85+
"pattern": "@",
86+
"group": "internal"
87+
},
88+
{
89+
"pattern": "@/**",
90+
"group": "internal"
91+
}
92+
],
93+
"pathGroupsExcludedImportTypes": [
94+
"type"
95+
],
96+
"newlines-between": "never"
97+
}
98+
],
99+
"@typescript-eslint/no-namespace": 0,
100+
"@typescript-eslint/no-explicit-any": 0,
101+
"@typescript-eslint/explicit-module-boundary-types": 0,
102+
"@typescript-eslint/no-unused-vars": [
103+
"warn",
104+
{
105+
"varsIgnorePattern": "^_",
106+
"argsIgnorePattern": "^_"
107+
}
108+
],
109+
"@typescript-eslint/no-inferrable-types": 0,
110+
"@typescript-eslint/no-non-null-assertion": 0,
111+
"@typescript-eslint/no-this-alias": 0,
112+
"@typescript-eslint/no-var-requires": 0,
113+
"@typescript-eslint/no-empty-function": 0,
114+
"@typescript-eslint/no-empty-interface": 0,
115+
"@typescript-eslint/consistent-type-imports": ["error"],
116+
"@typescript-eslint/consistent-type-exports": ["error"],
117+
"no-throw-literal": "off",
118+
"@typescript-eslint/no-throw-literal": "off",
119+
"@typescript-eslint/no-floating-promises": ["error", {
120+
"ignoreVoid": true,
121+
"ignoreIIFE": true
122+
}],
123+
"@typescript-eslint/no-misused-promises": ["error", {
124+
"checksVoidReturn": false
125+
}],
126+
"@typescript-eslint/await-thenable": ["error"],
127+
"@typescript-eslint/naming-convention": [
128+
"error",
129+
{
130+
"selector": "default",
131+
"format": ["camelCase"],
132+
"leadingUnderscore": "allow",
133+
"trailingUnderscore": "allowSingleOrDouble"
134+
},
135+
{
136+
"selector": "function",
137+
"format": ["camelCase", "PascalCase"],
138+
"leadingUnderscore": "allow",
139+
"trailingUnderscore": "allowSingleOrDouble"
140+
},
141+
{
142+
"selector": "variable",
143+
"format": ["camelCase", "UPPER_CASE", "PascalCase"],
144+
"leadingUnderscore": "allow",
145+
"trailingUnderscore": "allowSingleOrDouble"
146+
},
147+
{
148+
"selector": "parameter",
149+
"format": ["camelCase"],
150+
"leadingUnderscore": "allow",
151+
"trailingUnderscore": "allowSingleOrDouble"
152+
},
153+
{
154+
"selector": "typeLike",
155+
"format": ["PascalCase"],
156+
"trailingUnderscore": "allowSingleOrDouble"
157+
},
158+
{
159+
"selector": "enumMember",
160+
"format": ["PascalCase", "UPPER_CASE"]
161+
},
162+
{
163+
"selector": "objectLiteralProperty",
164+
"format": null
165+
},
166+
{
167+
"selector": "typeProperty",
168+
"format": null
169+
}
170+
],
171+
"@typescript-eslint/ban-ts-comment": [
172+
"error",
173+
{
174+
"ts-ignore": "allow-with-description"
175+
}
176+
]
177+
}
178+
}

.github/workflows/feature.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: "CI / Feature"
2+
3+
on:
4+
push:
5+
branches:
6+
- feature*
7+
workflow_dispatch:
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.ref }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
use-library-js-feature:
15+
permissions:
16+
contents: read
17+
actions: write
18+
checks: write
19+
uses: MatrixAI/.github/.github/workflows/library-js-feature.yml@master

.github/workflows/staging.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: "CI / Staging"
2+
3+
on:
4+
push:
5+
branches:
6+
- staging
7+
workflow_dispatch:
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.ref }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
use-library-js-staging:
15+
permissions:
16+
contents: write
17+
actions: write
18+
checks: write
19+
pull-requests: write
20+
uses: MatrixAI/.github/.github/workflows/library-js-staging.yml@master
21+
secrets:
22+
GH_TOKEN: ${{ secrets.GH_TOKEN }}
23+
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
24+
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}
25+
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }}
26+
GIT_COMMITTER_NAME: ${{ secrets.GIT_COMMITTER_NAME }}

.github/workflows/tag.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: "CI / Tag"
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*.*.*'
7+
workflow_dispatch:
8+
9+
jobs:
10+
use-library-js-tag:
11+
permissions:
12+
contents: read
13+
actions: write
14+
uses: MatrixAI/.github/.github/workflows/library-js-tag.yml@master
15+
secrets:
16+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.gitignore

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

0 commit comments

Comments
 (0)