Skip to content

Commit

Permalink
Merge pull request #635 from juanmesa2097/630-upgrade-to-version-16
Browse files Browse the repository at this point in the history
Upgrade Angular to v16
  • Loading branch information
ju4n97 authored May 13, 2023
2 parents ce43819 + 7588a60 commit a69e721
Show file tree
Hide file tree
Showing 150 changed files with 6,789 additions and 5,444 deletions.
59 changes: 59 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Ignore node_modules
node_modules

# Ignore any file or directory that starts with a dot
.*

# Ignore development files
*.log
*.swp
*.bak
*.backup
*.tmp

# Ignore test files
test
tests
*.test.*
*.spec.*

# Ignore build files
dist
build
*.map
*.tsbuildinfo

# Ignore package manager cache
.pnpm-store
.yarn-cache

# Ignore configuration files
/envs

# Ignore editor files
.vscode
.idea
*.iml

# Ignore Github files
.github

# Ignore k8s files
/charts

# Ignore documentation files
CHANGELOG
LICENSE
AUTHORS
CONTRIBUTORS

# Ignore version control files
.git
.gitignore
.svn
.hg
.bzr

# Ignore OS-specific files
.DS_Store
Thumbs.db
16 changes: 0 additions & 16 deletions .editorconfig

This file was deleted.

20 changes: 16 additions & 4 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
node_modules/*
package.json
.DS_Store
node_modules
/build
**/build
/dist
**/dist
.env
.env.*
!.env.example
__generated__

# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
package-lock.json
yarn.lock
pnpm-lock.yaml
dist

# Ignore test coverage
**/coverage
47 changes: 0 additions & 47 deletions .eslintrc

This file was deleted.

93 changes: 93 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
{
"root": true,
"ignorePatterns": ["projects/**/*"],
"overrides": [
{
"files": ["*.ts"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates",
"plugin:prettier/recommended"
],
"parserOptions": {
"project": true,
"tsconfigRootDir": "./"
},
"rules": {
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": "app",
"style": "camelCase"
}
],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "app",
"style": "kebab-case"
}
],
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/explicit-function-return-type": "error",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "variable",
"modifiers": ["const"],
"format": ["strictCamelCase", "UPPER_CASE"]
},
{
"selector": "variable",
"types": ["boolean"],
"format": ["StrictPascalCase"],
"prefix": ["is", "should", "has", "can", "did", "will"]
},
{
"selector": "function",
"format": ["strictCamelCase"]
},
{
"selector": "parameter",
"format": ["strictCamelCase"],
"leadingUnderscore": "allow"
},
{
"selector": "memberLike",
"format": ["strictCamelCase"]
},
{
"selector": "memberLike",
"modifiers": ["private"],
"format": ["strictCamelCase"],
"leadingUnderscore": "require"
},
{
"selector": "typeLike",
"format": ["StrictPascalCase"]
},
{
"selector": "enum",
"format": ["StrictPascalCase"]
},
{
"selector": "enumMember",
"format": ["StrictPascalCase"]
}
]
}
},
{
"files": ["*.html"],
"extends": ["plugin:@angular-eslint/template/recommended", "plugin:@angular-eslint/template/accessibility"],
"rules": {}
}
]
}
18 changes: 10 additions & 8 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

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

**To Reproduce**
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
Expand All @@ -24,15 +24,17 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
Expand Down
29 changes: 12 additions & 17 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,47 +1,42 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
# Compiled output
/dist
/tmp
/out-tsc
# Only exists if Bazel was run
/bazel-out

# dependencies
# Node
/node_modules

# profiling files
chrome-profiler-events*.json
speed-measure-plugin*.json
npm-debug.log
yarn-error.log

# IDEs and editors
/.idea
.idea/
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
# .vscode/*
# !.vscode/settings.json
# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
# !.vscode/extensions.json
!.vscode/extensions.json
.history/*

# misc
# Miscellaneous
/.angular/cache
/.sass-cache
.sass-cache/
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings

# System Files
# System files
.DS_Store
Thumbs.db
1 change: 0 additions & 1 deletion .husky/.gitignore

This file was deleted.

4 changes: 0 additions & 4 deletions .husky/pre-commit

This file was deleted.

4 changes: 0 additions & 4 deletions .husky/pre-push

This file was deleted.

Loading

1 comment on commit a69e721

@vercel
Copy link

@vercel vercel bot commented on a69e721 May 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.