Skip to content

Commit 881bded

Browse files
committed
initia
0 parents  commit 881bded

File tree

22 files changed

+10085
-0
lines changed

22 files changed

+10085
-0
lines changed

.gitignore

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Git Ignore Configuration File
2+
# See https://git-scm.com/docs/gitignore for more details
3+
4+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
5+
# Project generated directories
6+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
7+
/build
8+
/coverage
9+
/node_modules
10+
/public
11+
dist/
12+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
13+
# Project generated files
14+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
15+
npm-debug.log*
16+
yarn-debug.log*
17+
yarn-error.log*
18+
19+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
20+
# Environment configuration files
21+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
22+
.env
23+
.env.local
24+
.env.development.local
25+
.env.test.local
26+
.env.production.local
27+
.envprod
28+
.envlocal
29+
.env.yml*
30+
.envdev
31+
.env*
32+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
33+
# IDE generated directories
34+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
35+
/.idea
36+
#/.vscode
37+
38+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
39+
# IDE generated files
40+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
41+
.project
42+
*.iml
43+
44+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
45+
# OS generated directories
46+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
47+
/__MACOSX
48+
49+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
50+
# OS generated files
51+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
52+
.DS_Store
53+
Thumbs.db
54+
55+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
56+
# Custom
57+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
58+
.bkp
59+
.env.local.yml
60+
.envdev
61+
audit.log
62+
/dist

.gitmodules

Whitespace-only changes.

.jshintrc

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"bitwise": true,
3+
"browser": true,
4+
"curly": false,
5+
"eqeqeq": true,
6+
"esnext": true,
7+
"latedef": true,
8+
"noarg": true,
9+
"node": true,
10+
"strict": true,
11+
"undef": true,
12+
"unused": true,
13+
"mocha":true,
14+
"multistr":true,
15+
"asi":true,
16+
"globals": {
17+
"angular": false
18+
19+
}
20+
}

.node-version

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

.vscode/launch.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Attach",
9+
"port": 9230,
10+
"request": "attach",
11+
"skipFiles": ["<node_internals>/**"],
12+
"type": "node"
13+
}
14+
]
15+
}

0 commit comments

Comments
 (0)