Skip to content

Commit fbe939c

Browse files
authored
Feature/417 clarity upgrade (#421)
Clarity upgrade 3 -> 5
1 parent 993c589 commit fbe939c

File tree

53 files changed

+11362
-7076
lines changed

Some content is hidden

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

53 files changed

+11362
-7076
lines changed
File renamed without changes.

ui/.eslintrc.json

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
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+
"e2e/tsconfig.json"
15+
],
16+
"createDefaultProgram": true
17+
},
18+
"extends": [
19+
"plugin:@angular-eslint/ng-cli-compat",
20+
"plugin:@angular-eslint/ng-cli-compat--formatting-add-on",
21+
"plugin:@angular-eslint/template/process-inline-templates"
22+
],
23+
"rules": {
24+
"@angular-eslint/component-selector": [
25+
"error",
26+
{
27+
"type": "element",
28+
"prefix": "app",
29+
"style": "kebab-case"
30+
}
31+
],
32+
"@angular-eslint/directive-selector": [
33+
"error",
34+
{
35+
"type": "attribute",
36+
"prefix": "app",
37+
"style": "camelCase"
38+
}
39+
],
40+
"@typescript-eslint/explicit-member-accessibility": [
41+
"off",
42+
{
43+
"accessibility": "explicit"
44+
}
45+
],
46+
"arrow-parens": [
47+
"off",
48+
"always"
49+
],
50+
"import/order": "off"
51+
}
52+
},
53+
{
54+
"files": [
55+
"*.html"
56+
],
57+
"extends": [
58+
"plugin:@angular-eslint/template/recommended"
59+
],
60+
"rules": {}
61+
}
62+
]
63+
}

ui/angular.json

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
"polyfills": "src/polyfills.ts",
2424
"tsConfig": "tsconfig.app.json",
2525
"aot": true,
26+
"baseHref": "/hyperdrive_trigger/",
27+
"deployUrl": "/hyperdrive_trigger/",
2628
"assets": [
2729
"src/favicon.ico",
2830
"src/assets"
@@ -49,7 +51,6 @@
4951
"optimization": true,
5052
"outputHashing": "all",
5153
"sourceMap": false,
52-
"extractCss": true,
5354
"namedChunks": false,
5455
"extractLicenses": true,
5556
"vendorChunk": false,
@@ -105,15 +106,11 @@
105106
}
106107
},
107108
"lint": {
108-
"builder": "@angular-devkit/build-angular:tslint",
109+
"builder": "@angular-eslint/builder:lint",
109110
"options": {
110-
"tsConfig": [
111-
"tsconfig.app.json",
112-
"tsconfig.spec.json",
113-
"e2e/tsconfig.json"
114-
],
115-
"exclude": [
116-
"**/node_modules/**"
111+
"lintFilePatterns": [
112+
"src/**/*.ts",
113+
"src/**/*.html"
117114
]
118115
}
119116
},
@@ -133,4 +130,4 @@
133130
}
134131
},
135132
"defaultProject": "ui"
136-
}
133+
}

ui/e2e/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"compilerOptions": {
44
"outDir": "../out-tsc/e2e",
55
"module": "commonjs",
6-
"target": "es5",
6+
"target": "es2018",
77
"types": [
88
"jasmine",
99
"jasminewd2",

0 commit comments

Comments
 (0)