Skip to content

Commit c7b2013

Browse files
svetqtsvetomir
andauthored
Update examples to Angular 13 (#3683)
* chore: update to Ang 11 * chore: update to Ang 12 * chore: update to Ang 13 * chore: update Kendo package versions to latest * chore: update package-lock * chore: update integration-jquery * chore: update pdf-embedded-fonts * chore: update grid-signalr * chore: update grid-graphql * chore: update grid-firebase * chore: update chart-websockets * chore: update integration-pwa * refactor: update packages * fix: GraphQL demo * fix: patch @progress/kendo-jsdo * fix: scheduler integration demo * refactor: enable lint * chore: remove lint errors * fix: breaking changes * fix: lint error in grid-graphql server * refactor: lint * fix: grid-firebase import errors * refactor: update browserlist * chore: update lint config Co-authored-by: Tsvetomir Tsonev <[email protected]>
1 parent c9edc98 commit c7b2013

File tree

103 files changed

+28401
-14510
lines changed

Some content is hidden

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

103 files changed

+28401
-14510
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ dist
66
# dependencies
77
node_modules
88

9+
# cache
10+
.angular
11+
912
# IDE - VSCode
1013
.vscode/*
1114
!.vscode/settings.json

examples/.eslintrc.json

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

0 commit comments

Comments
 (0)