Skip to content

Commit fb686e9

Browse files
feat(protobuf-rpc): init (#2)
* feat(protobuf-rpc): init * fix(common): typecheck --------- Co-authored-by: Nikita Elfimov <[email protected]>
1 parent 7e776bc commit fb686e9

Some content is hidden

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

47 files changed

+23336
-3
lines changed

.config/husky/commit-msg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
yarn commit message lint

.config/husky/pre-commit

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
yarn commit staged

.config/husky/prepare-commit-msg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
yarn commit message $@

.github/ISSUE_TEMPLATE/bug.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ body:
5858
validations:
5959
required: true
6060

61-
projects: ['atls/11']
61+
projects: ['atls/11']

.github/ISSUE_TEMPLATE/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ body:
4141
validations:
4242
required: true
4343

44-
projects: ['atls/11']
44+
projects: ['atls/11']

.github/ISSUE_TEMPLATE/feature.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ body:
4444
validations:
4545
required: true
4646

47-
projects: ['atls/11']
47+
projects: ['atls/11']

.gitignore

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-error.log
6+
7+
# Runtime data
8+
pids
9+
*.pid
10+
*.seed
11+
12+
# Directory for instrumented libs generated by jscoverage/JSCover
13+
lib-cov
14+
15+
# Coverage directory used by tools like istanbul
16+
coverage
17+
18+
# node-waf configuration
19+
.lock-wscript
20+
21+
# Compiled binary addons (http://nodejs.org/api/addons.html)
22+
build/Release
23+
24+
# Dependency directory
25+
node_modules
26+
.yarn-cache
27+
28+
# Optional npm cache directory
29+
.npm
30+
.vim
31+
.vscode
32+
33+
# Optional REPL history
34+
.node_repl_history
35+
36+
# MacOS temporary files
37+
.DS_Store
38+
39+
# This is the Yarn build state; it's local to each clone
40+
/.yarn/build-state.yml
41+
42+
# This is the Yarn install state cache, it can be rebuilt anytime
43+
/.yarn/install-state.gz
44+
45+
# Build directory
46+
dist/
47+
.next
48+
49+
# JetBrains Files
50+
.idea/*
51+
!.idea/fileTemplates
52+
!.idea/file.template.settings.xml
53+
*.iml
54+
55+
# Env
56+
.env

.pnp.cjs

Lines changed: 12881 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)