Skip to content

Commit bc90d2a

Browse files
authored
Merge branch 'master' into dependabot/npm_and_yarn/ip-2.0.1
2 parents 2defd76 + d4a2050 commit bc90d2a

File tree

123 files changed

+5303
-12567
lines changed

Some content is hidden

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

123 files changed

+5303
-12567
lines changed

.devcontainer/devcontainer.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"image": "mcr.microsoft.com/devcontainers/typescript-node",
3+
"features": {
4+
"ghcr.io/devcontainers/features/node:1": {
5+
"version": "lts"
6+
},
7+
"ghcr.io/devcontainers/features/sshd:1": {}
8+
},
9+
"postCreateCommand": {
10+
"install": "pnpm install"
11+
}
12+
}

.dockerignore

Lines changed: 0 additions & 9 deletions
This file was deleted.

.editorconfig

Lines changed: 0 additions & 16 deletions
This file was deleted.

.eslintrc.json

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

.github/renovate.json

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,35 @@
44
"config:base",
55
":dependencyDashboard"
66
],
7-
"baseBranches": ["dev"],
8-
"lockFileMaintenance": {
7+
"baseBranches": [
8+
"dev"
9+
],
10+
"lockFileMaintenance": {
911
"enabled": true,
1012
"automerge": true,
1113
"automergeType": "pr",
1214
"platformAutomerge": true
1315
},
1416
"packageRules": [
1517
{
16-
"matchDepTypes": ["devDependencies"],
17-
"matchPackagePatterns": ["lint", "prettier"],
18+
"matchDepTypes": [
19+
"devDependencies"
20+
],
21+
"matchPackagePatterns": [
22+
"lint",
23+
"prettier"
24+
],
1825
"automerge": true
1926
},
2027
{
21-
"matchUpdateTypes": ["minor", "patch"],
28+
"matchUpdateTypes": [
29+
"minor",
30+
"patch"
31+
],
2232
"matchCurrentVersion": "!/^0/",
2333
"automerge": true
2434
}
2535
],
2636
"platformCommit": true,
2737
"dependencyDashboardAutoclose": true
28-
}
38+
}

.github/workflows/cypress.yml

Lines changed: 0 additions & 86 deletions
This file was deleted.

.gitignore

Lines changed: 31 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,37 @@
1-
# See http://help.github.com/ignore-files/ for more about ignoring files.
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
22

3-
# Compiled output
4-
/dist
5-
/tmp
6-
/out-tsc
7-
/bazel-out
8-
9-
# Node
3+
# dependencies
104
/node_modules
11-
npm-debug.log
12-
yarn-error.log
13-
14-
# Environment Variables
15-
src/environments/*.dev.ts
16-
src/environments/*.test.ts
17-
.angular
18-
19-
# IDEs and editors
20-
.idea/
21-
.project
22-
.classpath
23-
.c9/
24-
*.launch
25-
.settings/
26-
*.sublime-workspace
27-
28-
# Visual Studio Code
29-
.vscode/*
30-
!.vscode/settings.json
31-
!.vscode/tasks.json
32-
!.vscode/launch.json
33-
!.vscode/extensions.json
34-
.history/*
35-
36-
# Miscellaneous
37-
/.angular/cache
38-
.sass-cache/
39-
/connect.lock
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
409
/coverage
41-
/libpeerconnection.log
42-
testem.log
43-
/typings
4410

45-
# System files
11+
# next.js
12+
/.next/
13+
/out/
14+
15+
# production
16+
/build
17+
18+
# misc
4619
.DS_Store
47-
Thumbs.db
20+
*.pem
21+
/.idea/
22+
23+
# debug
24+
npm-debug.log*
25+
yarn-debug.log*
26+
yarn-error.log*
27+
.pnpm-debug.log*
28+
29+
# local env files
30+
.env*.local
31+
32+
# vercel
33+
.vercel
4834

49-
# Firebase
50-
.firebase
51-
*-debug.log
52-
.runtimeconfig.json
53-
/docker-compose.yml
35+
# typescript
36+
*.tsbuildinfo
37+
next-env.d.ts

.prettierrc

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
2-
"tabWidth": 2,
2+
"tabWidth": 4,
33
"useTabs": false,
44
"semi": false,
5-
"trailingComma": "es5",
5+
"singleQuote": true,
6+
"trailingComma": "all",
67
"bracketSpacing": true,
7-
"arrowParens": "avoid",
8-
"printWidth": 120
8+
"jsxBracketSameLine": true,
9+
"arrowParens": "avoid"
910
}

.vscode/extensions.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.vscode/launch.json

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)