-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #635 from juanmesa2097/630-upgrade-to-version-16
Upgrade Angular to v16
- Loading branch information
Showing
150 changed files
with
6,789 additions
and
5,444 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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": {} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
a69e721
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
angular-boilerplate – ./
angular-boilerplate-juanmesa2097.vercel.app
angularboilerplate.vercel.app
angular-boilerplate-git-main-juanmesa2097.vercel.app