Skip to content

Commit efc6113

Browse files
committed
Added industry grade app
1 parent 178b260 commit efc6113

File tree

309 files changed

+4831
-37651
lines changed

Some content is hidden

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

309 files changed

+4831
-37651
lines changed

.editorconfig

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ indent_style = space
77
indent_size = 2
88
insert_final_newline = true
99
trim_trailing_whitespace = true
10+
end_of_line = lf
11+
max_line_length = 120
1012

1113
[*.md]
1214
max_line_length = off

.eslintrc

-160
This file was deleted.

.githooks/pre-commit

-81
This file was deleted.

.gitignore

+19-6
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,28 @@
11
# See http://help.github.com/ignore-files/ for more about ignoring files.
22

3-
./src/environment.ts
4-
5-
# compiled output
3+
# Compiled output
64
/dist
75
/tmp
86
/out-tsc
97

10-
# dependencies
8+
# Dependencies
119
/node_modules
1210

11+
# Cordova
12+
/www
13+
/plugins
14+
/platforms
15+
1316
# IDEs and editors
14-
/.idea
17+
.idea/*
18+
!.idea/runConfigurations/
19+
!.idea/codeStyleSettings.xml
1520
.project
1621
.classpath
1722
.c9/
1823
*.launch
1924
.settings/
25+
xcuserdata/
2026
*.sublime-workspace
2127

2228
# IDE - VSCode
@@ -26,7 +32,11 @@
2632
!.vscode/launch.json
2733
!.vscode/extensions.json
2834

29-
# misc
35+
# Maven
36+
/target
37+
/log
38+
39+
# Misc
3040
/.sass-cache
3141
/connect.lock
3242
/coverage
@@ -35,6 +45,9 @@ npm-debug.log
3545
yarn-error.log
3646
testem.log
3747
/typings
48+
/reports
49+
/src/translations/template.*
50+
/src/environments/.env.*
3851

3952
# System Files
4053
.DS_Store

.htmlhintrc

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"tagname-lowercase": false,
3+
"attr-lowercase": false,
4+
"attr-value-double-quotes": true,
5+
"tag-pair": true,
6+
"spec-char-escape": true,
7+
"id-unique": true,
8+
"src-not-empty": true,
9+
"attr-no-duplication": true,
10+
"title-require": true,
11+
"tag-self-close": true,
12+
"head-script-disabled": true,
13+
"doctype-html5": true,
14+
"id-class-value": "dash",
15+
"style-disabled": true,
16+
"inline-style-disabled": true,
17+
"inline-script-disabled": true,
18+
"space-tab-mixed-disabled": "true",
19+
"id-class-ad-disabled": true,
20+
"attr-unsafe-chars": true
21+
}

.stylelintrc

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"extends": [
3+
"stylelint-config-standard",
4+
"stylelint-config-recommended-scss",
5+
"stylelint-config-prettier"
6+
],
7+
"rules": {
8+
"font-family-name-quotes": "always-where-recommended",
9+
"function-url-quotes": [
10+
"always",
11+
{
12+
"except": ["empty"]
13+
}
14+
],
15+
"selector-attribute-quotes": "always",
16+
"string-quotes": "double",
17+
"max-nesting-depth": 3,
18+
"selector-max-compound-selectors": 3,
19+
"selector-max-specificity": "0,3,2",
20+
"declaration-no-important": true,
21+
"at-rule-no-vendor-prefix": true,
22+
"media-feature-name-no-vendor-prefix": true,
23+
"property-no-vendor-prefix": true,
24+
"selector-no-vendor-prefix": true,
25+
"value-no-vendor-prefix": true,
26+
"no-empty-source": null,
27+
"selector-class-pattern": "[a-z-]+",
28+
"selector-id-pattern": "[a-z-]+",
29+
"selector-max-id": 0,
30+
"selector-no-qualifying-type": true,
31+
"selector-max-universal": 0,
32+
"selector-pseudo-element-no-unknown": [
33+
true,
34+
{
35+
"ignorePseudoElements": ["ng-deep"]
36+
}
37+
],
38+
"unit-whitelist": ["px", "%", "em", "rem", "vw", "vh", "deg", "s"],
39+
"max-empty-lines": 2,
40+
"max-line-length": 120
41+
}
42+
}

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"python.pythonPath": "/usr/bin/python3"
3+
}

0 commit comments

Comments
 (0)