Skip to content

Commit c43f2d1

Browse files
committed
Initialize angular10
0 parents  commit c43f2d1

Some content is hidden

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

77 files changed

+2340
-0
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
max_line_length = off
13+
trim_trailing_whitespace = false

.eslintrc.json

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"node": true,
5+
"es6": true,
6+
"es2017": true
7+
},
8+
"overrides": [
9+
{
10+
"files": ["*.ts"],
11+
"extends": [
12+
"eslint:recommended",
13+
"plugin:@typescript-eslint/eslint-recommended",
14+
"plugin:@typescript-eslint/recommended",
15+
"plugin:@typescript-eslint/recommended-requiring-type-checking"
16+
],
17+
"parser": "@typescript-eslint/parser",
18+
"parserOptions": {
19+
"ecmaVersion": 10,
20+
"project": [
21+
"./tsconfig.serve.json",
22+
"./src/tsconfig.app.json",
23+
"./src/tsconfig.spec.json",
24+
"./e2e/tsconfig.e2e.json"
25+
],
26+
"sourceType": "module",
27+
"ecmaFeatures": {
28+
"modules": true
29+
}
30+
},
31+
"plugins": [
32+
"@typescript-eslint",
33+
"@angular-eslint/eslint-plugin"
34+
],
35+
"rules": {
36+
"@typescript-eslint/indent": [
37+
"error", 2, {
38+
"SwitchCase": 1,
39+
"CallExpression": {"arguments": "first"},
40+
"FunctionExpression": {"parameters": "first"},
41+
"FunctionDeclaration": {"parameters": "first"}
42+
}
43+
],
44+
"@typescript-eslint/no-empty-function": 0,
45+
"@typescript-eslint/no-var-requires": 0,
46+
"@typescript-eslint/no-explicit-any": 0,
47+
"@typescript-eslint/no-unsafe-call": 0,
48+
"@typescript-eslint/no-unsafe-member-access": 0,
49+
"@typescript-eslint/no-unsafe-assignment": 0,
50+
"@typescript-eslint/no-unsafe-return": 0,
51+
"@typescript-eslint/no-floating-promises": 0,
52+
"@angular-eslint/use-injectable-provided-in": "error",
53+
"@angular-eslint/no-attribute-decorator": "error"
54+
}
55+
},
56+
{
57+
"files": ["*.component.html"],
58+
"parser": "@angular-eslint/template-parser",
59+
"plugins": ["@angular-eslint/template"],
60+
"rules": {
61+
"@angular-eslint/template/banana-in-a-box": "error",
62+
"@angular-eslint/template/no-negated-async": "error"
63+
}
64+
}
65+
]
66+
}

.github/FUNDING.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: maximegris
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: maximegris # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

.github/stale.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 15
3+
# Number of days of inactivity before a stale issue is closed
4+
daysUntilClose: 7
5+
# Issues with these labels will never be considered stale
6+
exemptLabels:
7+
- pinned
8+
- security
9+
# Label to use when marking an issue as stale
10+
staleLabel: wontfix
11+
# Comment to post when marking an issue as stale. Set to `false` to disable
12+
markComment: >
13+
This issue has been automatically marked as stale because it has not had
14+
recent activity. It will be closed if no further activity occurs. Thank you
15+
for your contributions.
16+
# Comment to post when closing a stale issue. Set to `false` to disable
17+
closeComment: false

.gitignore

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
/dist
5+
/tmp
6+
/out-tsc
7+
/app-builds
8+
/release
9+
main.js
10+
src/**/*.js
11+
!src/karma.conf.js
12+
*.js.map
13+
14+
# dependencies
15+
/node_modules
16+
17+
# IDEs and editors
18+
/.idea
19+
.project
20+
.classpath
21+
.c9/
22+
*.launch
23+
.settings/
24+
*.sublime-workspace
25+
26+
# IDE - VSCode
27+
.vscode/*
28+
.vscode/settings.json
29+
!.vscode/tasks.json
30+
!.vscode/launch.json
31+
!.vscode/extensions.json
32+
33+
# misc
34+
/.sass-cache
35+
/connect.lock
36+
/coverage
37+
/libpeerconnection.log
38+
npm-debug.log
39+
testem.log
40+
/typings
41+
package-lock.json
42+
43+
# e2e
44+
/e2e/*.js
45+
!/e2e/protractor.conf.js
46+
/e2e/*.map
47+
48+
# System Files
49+
.DS_Store
50+
Thumbs.db

.npmrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
save=true
2+
save-exact=true

.travis.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
os:
2+
- linux
3+
- osx
4+
- windows
5+
language: node_js
6+
node_js:
7+
- 'lts/*'
8+
services:
9+
- xvfb
10+
before_script:
11+
- export DISPLAY=:99.0
12+
install:
13+
- npm set progress=false
14+
- npm install
15+
script:
16+
- ng lint
17+
- if [ "$TRAVIS_OS_NAME" != "windows" ]; then npm run test ; fi
18+
- if [ "$TRAVIS_OS_NAME" != "windows" ]; then npm run e2e ; fi
19+
- npm run build

.vscode/launch.json

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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": "Electron Main Renderer",
9+
"type": "node",
10+
"request": "launch",
11+
"protocol": "inspector",
12+
// Prelaunch task compiles main.ts for Electron & starts Angular dev server.
13+
"preLaunchTask": "Build.All",
14+
"cwd": "${workspaceFolder}",
15+
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
16+
"runtimeArgs": [
17+
"--serve",
18+
".",
19+
"--remote-debugging-port=9222"
20+
],
21+
"windows": {
22+
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
23+
}
24+
}, {
25+
"name": "Karma Attach Chrome",
26+
"type": "chrome",
27+
"request": "attach",
28+
"port": 9222,
29+
"webRoot": "${workspaceFolder}/",
30+
"sourceMaps": true,
31+
"timeout": 30000,
32+
"trace": true
33+
}
34+
35+
]
36+
}

.vscode/tasks.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "Build.All",
6+
"type": "shell",
7+
"command": "npm run electron:serve-tsc && ng serve",
8+
"isBackground": true,
9+
"group": {
10+
"kind": "build",
11+
"isDefault": true
12+
},
13+
"problemMatcher": {
14+
"owner": "typescript",
15+
"source": "ts",
16+
"applyTo": "closedDocuments",
17+
"fileLocation": ["relative", "${cwd}"],
18+
"pattern": "$tsc",
19+
"background": {
20+
"activeOnStart": true,
21+
"beginsPattern": "^.*",
22+
"endsPattern": "^.*Compiled successfully.*"
23+
}
24+
}
25+
}
26+
]
27+
}

0 commit comments

Comments
 (0)