Skip to content

Commit 53928bb

Browse files
committed
chore: synchronizing with typescript-demo-lib
1 parent a652281 commit 53928bb

17 files changed

+572
-56
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ end_of_line = lf
55
indent_style = space
66
indent_size = 2
77
insert_final_newline = true
8-
trim_trailing_whitespace = true
8+
trim_trailing_whitespace = true

.eslintrc

+11-5
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"no-prototype-builtins": 1,
2828
"no-constant-condition": 0,
2929
"no-useless-escape": 0,
30+
"no-console": "error",
3031
"require-yield": 0,
3132
"eqeqeq": ["error", "smart"],
3233
"spaced-comment": [
@@ -49,6 +50,11 @@
4950
"ignoreConsecutiveComments": true
5051
}
5152
],
53+
"curly": [
54+
"error",
55+
"multi-line",
56+
"consistent"
57+
],
5258
"import/order": [
5359
"error",
5460
{
@@ -114,14 +120,14 @@
114120
"trailingUnderscore": "allowSingleOrDouble"
115121
},
116122
{
117-
"selector": "variable",
118-
"format": ["camelCase", "UPPER_CASE", "PascalCase"],
123+
"selector": "function",
124+
"format": ["camelCase", "PascalCase"],
119125
"leadingUnderscore": "allow",
120126
"trailingUnderscore": "allowSingleOrDouble"
121127
},
122128
{
123-
"selector": "function",
124-
"format": ["camelCase", "PascalCase"],
129+
"selector": "variable",
130+
"format": ["camelCase", "UPPER_CASE", "PascalCase"],
125131
"leadingUnderscore": "allow",
126132
"trailingUnderscore": "allowSingleOrDouble"
127133
},
@@ -138,7 +144,7 @@
138144
},
139145
{
140146
"selector": "enumMember",
141-
"format": ["UPPER_CASE"]
147+
"format": ["PascalCase", "UPPER_CASE"]
142148
},
143149
{
144150
"selector": "objectLiteralProperty",
+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
on:
2+
push:
3+
branches:
4+
- master
5+
pull_request_target:
6+
types: [opened, synchronize, reopened]
7+
8+
name: CodeSee Map
9+
10+
jobs:
11+
test_map_action:
12+
runs-on: ubuntu-latest
13+
continue-on-error: true
14+
name: Run CodeSee Map Analysis
15+
steps:
16+
- name: checkout
17+
id: checkout
18+
uses: actions/checkout@v2
19+
with:
20+
repository: ${{ github.event.pull_request.head.repo.full_name }}
21+
ref: ${{ github.event.pull_request.head.ref }}
22+
fetch-depth: 0
23+
24+
# codesee-detect-languages has an output with id languages.
25+
- name: Detect Languages
26+
id: detect-languages
27+
uses: Codesee-io/codesee-detect-languages-action@latest
28+
29+
- name: Configure JDK 16
30+
uses: actions/setup-java@v2
31+
if: ${{ fromJSON(steps.detect-languages.outputs.languages).java }}
32+
with:
33+
java-version: '16'
34+
distribution: 'zulu'
35+
36+
# CodeSee Maps Go support uses a static binary so there's no setup step required.
37+
38+
- name: Configure Node.js 14
39+
uses: actions/setup-node@v2
40+
if: ${{ fromJSON(steps.detect-languages.outputs.languages).javascript }}
41+
with:
42+
node-version: '14'
43+
44+
- name: Configure Python 3.x
45+
uses: actions/setup-python@v2
46+
if: ${{ fromJSON(steps.detect-languages.outputs.languages).python }}
47+
with:
48+
python-version: '3.10'
49+
architecture: 'x64'
50+
51+
- name: Configure Ruby '3.x'
52+
uses: ruby/setup-ruby@v1
53+
if: ${{ fromJSON(steps.detect-languages.outputs.languages).ruby }}
54+
with:
55+
ruby-version: '3.0'
56+
57+
# We need the rust toolchain because it uses rustc and cargo to inspect the package
58+
- name: Configure Rust 1.x stable
59+
uses: actions-rs/toolchain@v1
60+
if: ${{ fromJSON(steps.detect-languages.outputs.languages).rust }}
61+
with:
62+
toolchain: stable
63+
64+
- name: Generate Map
65+
id: generate-map
66+
uses: Codesee-io/codesee-map-action@latest
67+
with:
68+
step: map
69+
api_token: ${{ secrets.CODESEE_ARCH_DIAG_API_TOKEN }}
70+
github_ref: ${{ github.ref }}
71+
languages: ${{ steps.detect-languages.outputs.languages }}
72+
73+
- name: Upload Map
74+
id: upload-map
75+
uses: Codesee-io/codesee-map-action@latest
76+
with:
77+
step: mapUpload
78+
api_token: ${{ secrets.CODESEE_ARCH_DIAG_API_TOKEN }}
79+
github_ref: ${{ github.ref }}
80+
81+
- name: Insights
82+
id: insights
83+
uses: Codesee-io/codesee-map-action@latest
84+
with:
85+
step: insights
86+
api_token: ${{ secrets.CODESEE_ARCH_DIAG_API_TOKEN }}
87+
github_ref: ${{ github.ref }}

.gitignore

+55-6
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,24 @@
22
/dist
33
.env*
44
!.env.example
5+
# nix
56
/result*
7+
/builds
8+
# node-gyp
9+
/build
10+
# prebuildify
11+
/prebuilds
612

713
# Logs
814
logs
915
*.log
1016
npm-debug.log*
1117
yarn-debug.log*
1218
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
1323

1424
# Runtime data
1525
pids
@@ -22,11 +32,12 @@ lib-cov
2232

2333
# Coverage directory used by tools like istanbul
2434
coverage
35+
*.lcov
2536

2637
# nyc test coverage
2738
.nyc_output
2839

29-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
40+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
3041
.grunt
3142

3243
# Bower dependency directory (https://bower.io/)
@@ -42,15 +53,24 @@ build/Release
4253
node_modules/
4354
jspm_packages/
4455

45-
# TypeScript v1 declaration files
46-
typings/
56+
# Snowpack dependency directory (https://snowpack.dev/)
57+
web_modules/
58+
59+
# TypeScript cache
60+
*.tsbuildinfo
4761

4862
# Optional npm cache directory
4963
.npm
5064

5165
# Optional eslint cache
5266
.eslintcache
5367

68+
# Microbundle cache
69+
.rpt2_cache/
70+
.rts2_cache_cjs/
71+
.rts2_cache_es/
72+
.rts2_cache_umd/
73+
5474
# Optional REPL history
5575
.node_repl_history
5676

@@ -62,18 +82,47 @@ typings/
6282

6383
# dotenv environment variables file
6484
.env
85+
.env.test
6586

6687
# parcel-bundler cache (https://parceljs.org/)
6788
.cache
89+
.parcel-cache
6890

69-
# next.js build output
91+
# Next.js build output
7092
.next
93+
out
7194

72-
# nuxt.js build output
95+
# Nuxt.js build / generate output
7396
.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
74104

75105
# vuepress build output
76106
.vuepress/dist
77107

78108
# Serverless directories
79-
.serverless
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)