Skip to content

Commit a69e721

Browse files
authored
Merge pull request #635 from juanmesa2097/630-upgrade-to-version-16
Upgrade Angular to v16
2 parents ce43819 + 7588a60 commit a69e721

File tree

150 files changed

+6789
-5444
lines changed

Some content is hidden

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

150 files changed

+6789
-5444
lines changed

.dockerignore

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Ignore node_modules
2+
node_modules
3+
4+
# Ignore any file or directory that starts with a dot
5+
.*
6+
7+
# Ignore development files
8+
*.log
9+
*.swp
10+
*.bak
11+
*.backup
12+
*.tmp
13+
14+
# Ignore test files
15+
test
16+
tests
17+
*.test.*
18+
*.spec.*
19+
20+
# Ignore build files
21+
dist
22+
build
23+
*.map
24+
*.tsbuildinfo
25+
26+
# Ignore package manager cache
27+
.pnpm-store
28+
.yarn-cache
29+
30+
# Ignore configuration files
31+
/envs
32+
33+
# Ignore editor files
34+
.vscode
35+
.idea
36+
*.iml
37+
38+
# Ignore Github files
39+
.github
40+
41+
# Ignore k8s files
42+
/charts
43+
44+
# Ignore documentation files
45+
CHANGELOG
46+
LICENSE
47+
AUTHORS
48+
CONTRIBUTORS
49+
50+
# Ignore version control files
51+
.git
52+
.gitignore
53+
.svn
54+
.hg
55+
.bzr
56+
57+
# Ignore OS-specific files
58+
.DS_Store
59+
Thumbs.db

.editorconfig

-16
This file was deleted.

.eslintignore

+16-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
1-
node_modules/*
2-
package.json
1+
.DS_Store
2+
node_modules
3+
/build
4+
**/build
5+
/dist
6+
**/dist
7+
.env
8+
.env.*
9+
!.env.example
10+
__generated__
11+
12+
# Ignore files for PNPM, NPM and YARN
13+
pnpm-lock.yaml
314
package-lock.json
415
yarn.lock
5-
pnpm-lock.yaml
6-
dist
16+
17+
# Ignore test coverage
18+
**/coverage

.eslintrc

-47
This file was deleted.

.eslintrc.json

+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
{
2+
"root": true,
3+
"ignorePatterns": ["projects/**/*"],
4+
"overrides": [
5+
{
6+
"files": ["*.ts"],
7+
"extends": [
8+
"eslint:recommended",
9+
"plugin:@typescript-eslint/recommended",
10+
"plugin:@typescript-eslint/recommended-requiring-type-checking",
11+
"plugin:@angular-eslint/recommended",
12+
"plugin:@angular-eslint/template/process-inline-templates",
13+
"plugin:prettier/recommended"
14+
],
15+
"parserOptions": {
16+
"project": true,
17+
"tsconfigRootDir": "./"
18+
},
19+
"rules": {
20+
"@angular-eslint/directive-selector": [
21+
"error",
22+
{
23+
"type": "attribute",
24+
"prefix": "app",
25+
"style": "camelCase"
26+
}
27+
],
28+
"@angular-eslint/component-selector": [
29+
"error",
30+
{
31+
"type": "element",
32+
"prefix": "app",
33+
"style": "kebab-case"
34+
}
35+
],
36+
"@typescript-eslint/no-floating-promises": "off",
37+
"@typescript-eslint/no-unused-vars": "error",
38+
"@typescript-eslint/explicit-function-return-type": "error",
39+
"@typescript-eslint/no-explicit-any": "error",
40+
"@typescript-eslint/naming-convention": [
41+
"error",
42+
{
43+
"selector": "variable",
44+
"modifiers": ["const"],
45+
"format": ["strictCamelCase", "UPPER_CASE"]
46+
},
47+
{
48+
"selector": "variable",
49+
"types": ["boolean"],
50+
"format": ["StrictPascalCase"],
51+
"prefix": ["is", "should", "has", "can", "did", "will"]
52+
},
53+
{
54+
"selector": "function",
55+
"format": ["strictCamelCase"]
56+
},
57+
{
58+
"selector": "parameter",
59+
"format": ["strictCamelCase"],
60+
"leadingUnderscore": "allow"
61+
},
62+
{
63+
"selector": "memberLike",
64+
"format": ["strictCamelCase"]
65+
},
66+
{
67+
"selector": "memberLike",
68+
"modifiers": ["private"],
69+
"format": ["strictCamelCase"],
70+
"leadingUnderscore": "require"
71+
},
72+
{
73+
"selector": "typeLike",
74+
"format": ["StrictPascalCase"]
75+
},
76+
{
77+
"selector": "enum",
78+
"format": ["StrictPascalCase"]
79+
},
80+
{
81+
"selector": "enumMember",
82+
"format": ["StrictPascalCase"]
83+
}
84+
]
85+
}
86+
},
87+
{
88+
"files": ["*.html"],
89+
"extends": ["plugin:@angular-eslint/template/recommended", "plugin:@angular-eslint/template/accessibility"],
90+
"rules": {}
91+
}
92+
]
93+
}

.github/ISSUE_TEMPLATE/bug_report.md

+10-8
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ about: Create a report to help us improve
44
title: ''
55
labels: ''
66
assignees: ''
7-
87
---
98

109
**Describe the bug**
1110
A clear and concise description of what the bug is.
1211

1312
**To Reproduce**
1413
Steps to reproduce the behavior:
14+
1515
1. Go to '...'
1616
2. Click on '....'
1717
3. Scroll down to '....'
@@ -24,15 +24,17 @@ A clear and concise description of what you expected to happen.
2424
If applicable, add screenshots to help explain your problem.
2525

2626
**Desktop (please complete the following information):**
27-
- OS: [e.g. iOS]
28-
- Browser [e.g. chrome, safari]
29-
- Version [e.g. 22]
27+
28+
- OS: [e.g. iOS]
29+
- Browser [e.g. chrome, safari]
30+
- Version [e.g. 22]
3031

3132
**Smartphone (please complete the following information):**
32-
- Device: [e.g. iPhone6]
33-
- OS: [e.g. iOS8.1]
34-
- Browser [e.g. stock browser, safari]
35-
- Version [e.g. 22]
33+
34+
- Device: [e.g. iPhone6]
35+
- OS: [e.g. iOS8.1]
36+
- Browser [e.g. stock browser, safari]
37+
- Version [e.g. 22]
3638

3739
**Additional context**
3840
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/feature_request.md

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ about: Suggest an idea for this project
44
title: ''
55
labels: ''
66
assignees: ''
7-
87
---
98

109
**Is your feature request related to a problem? Please describe.**

.gitignore

+12-17
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,42 @@
11
# See http://help.github.com/ignore-files/ for more about ignoring files.
22

3-
# compiled output
3+
# Compiled output
44
/dist
55
/tmp
66
/out-tsc
7-
# Only exists if Bazel was run
87
/bazel-out
98

10-
# dependencies
9+
# Node
1110
/node_modules
12-
13-
# profiling files
14-
chrome-profiler-events*.json
15-
speed-measure-plugin*.json
11+
npm-debug.log
12+
yarn-error.log
1613

1714
# IDEs and editors
18-
/.idea
15+
.idea/
1916
.project
2017
.classpath
2118
.c9/
2219
*.launch
2320
.settings/
2421
*.sublime-workspace
2522

26-
# IDE - VSCode
27-
# .vscode/*
28-
# !.vscode/settings.json
23+
# Visual Studio Code
24+
.vscode/*
25+
!.vscode/settings.json
2926
!.vscode/tasks.json
3027
!.vscode/launch.json
31-
# !.vscode/extensions.json
28+
!.vscode/extensions.json
3229
.history/*
3330

34-
# misc
31+
# Miscellaneous
3532
/.angular/cache
36-
/.sass-cache
33+
.sass-cache/
3734
/connect.lock
3835
/coverage
3936
/libpeerconnection.log
40-
npm-debug.log
41-
yarn-error.log
4237
testem.log
4338
/typings
4439

45-
# System Files
40+
# System files
4641
.DS_Store
4742
Thumbs.db

.husky/.gitignore

-1
This file was deleted.

.husky/pre-commit

-4
This file was deleted.

.husky/pre-push

-4
This file was deleted.

0 commit comments

Comments
 (0)