Skip to content

Commit 19a3e9d

Browse files
committed
更新到2.8.0&capacitor
1 parent cdca9ad commit 19a3e9d

File tree

638 files changed

+87560
-94500
lines changed

Some content is hidden

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

638 files changed

+87560
-94500
lines changed

.browserslistrc

+6-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
# You can see what browsers were selected by your queries by running:
99
# npx browserslist
1010

11-
last 10 Chrome version
12-
last 3 Safari major versions
13-
last 3 iOS major versions
14-
not IE 11
11+
Chrome >=79
12+
ChromeAndroid >=79
13+
Firefox >=70
14+
Edge >=79
15+
Safari >=14
16+
iOS >=14

.editorconfig

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Editor configuration, see https://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+
[*.ts]
12+
quote_type = single
13+
14+
[*.md]
15+
max_line_length = off
16+
trim_trailing_whitespace = false

.eslintrc.json

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"root": true,
3+
"ignorePatterns": ["projects/**/*"],
4+
"overrides": [
5+
{
6+
"files": ["*.ts"],
7+
"parserOptions": {
8+
"project": ["tsconfig.json"],
9+
"createDefaultProgram": true
10+
},
11+
"extends": [
12+
"plugin:@angular-eslint/recommended",
13+
"plugin:@angular-eslint/template/process-inline-templates"
14+
],
15+
"rules": {
16+
"@angular-eslint/component-class-suffix": [
17+
"error",
18+
{
19+
"suffixes": ["Page", "Component"]
20+
}
21+
],
22+
"@angular-eslint/component-selector": [
23+
"error",
24+
{
25+
"type": "element",
26+
"prefix": "app",
27+
"style": "kebab-case"
28+
}
29+
],
30+
"@angular-eslint/directive-selector": [
31+
"error",
32+
{
33+
"type": "attribute",
34+
"prefix": "app",
35+
"style": "camelCase"
36+
}
37+
]
38+
}
39+
},
40+
{
41+
"files": ["*.html"],
42+
"extends": ["plugin:@angular-eslint/template/recommended"],
43+
"rules": {}
44+
}
45+
]
46+
}

.gitignore

+53-24
Original file line numberDiff line numberDiff line change
@@ -3,37 +3,66 @@
33

44
*~
55
*.sw[mnpcod]
6-
*.log
6+
.tmp
77
*.tmp
88
*.tmp.*
9+
UserInterfaceState.xcuserstate
10+
$RECYCLE.BIN/
11+
12+
*.log
913
log.txt
14+
15+
16+
/.sourcemaps
17+
/.versions
18+
/coverage
19+
20+
# Ionic
21+
/.ionic
22+
/www
23+
/platforms
24+
/plugins
25+
26+
# Compiled output
27+
/dist
28+
/tmp
29+
/out-tsc
30+
/bazel-out
31+
32+
# Node
33+
/node_modules
34+
npm-debug.log
35+
yarn-error.log
36+
37+
# IDEs and editors
38+
.idea/
39+
.project
40+
.classpath
41+
.c9/
42+
*.launch
43+
.settings/
1044
*.sublime-project
1145
*.sublime-workspace
12-
.vscode/
13-
npm-debug.log*
14-
package-lock.json
1546

16-
dist
17-
.idea/
18-
.ionic/
19-
.sourcemaps/
47+
# Visual Studio Code
48+
.vscode/*
49+
!.vscode/settings.json
50+
!.vscode/tasks.json
51+
!.vscode/launch.json
52+
!.vscode/extensions.json
53+
.history/*
54+
55+
56+
# Miscellaneous
57+
/.angular
58+
/.angular/cache
2059
.sass-cache/
21-
.tmp/
22-
.versions/
23-
coverage/
24-
www/
25-
node_modules/
26-
tmp/
27-
temp/
28-
platforms/
29-
platforms2/
30-
plugins/
31-
plugins/android.json
32-
plugins/ios.json
33-
$RECYCLE.BIN/
60+
/connect.lock
61+
/coverage
62+
/libpeerconnection.log
63+
testem.log
64+
/typings
3465

66+
# System files
3567
.DS_Store
3668
Thumbs.db
37-
UserInterfaceState.xcuserstate
38-
39-
.angular

0 commit comments

Comments
 (0)