Skip to content

Commit 645f815

Browse files
authored
Merge pull request #329 from TheJacksonLaboratory/enhancement/standalone-optimize
Enhancement/standalone optimize
2 parents 037b0df + eddc625 commit 645f815

File tree

125 files changed

+756
-954
lines changed

Some content is hidden

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

125 files changed

+756
-954
lines changed

.eslintrc.json

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -8,44 +8,39 @@
88
"files": [
99
"*.ts"
1010
],
11-
"parserOptions": {
12-
"project": [
13-
"tsconfig.json",
14-
"e2e/tsconfig.json"
15-
],
16-
"createDefaultProgram": true
17-
},
1811
"extends": [
12+
"eslint:recommended",
13+
"plugin:@typescript-eslint/recommended",
1914
"plugin:@angular-eslint/recommended",
2015
"plugin:@angular-eslint/template/process-inline-templates"
2116
],
2217
"rules": {
23-
"@angular-eslint/component-selector": [
18+
"@angular-eslint/directive-selector": [
2419
"error",
2520
{
21+
"type": "attribute",
2622
"prefix": "app",
27-
"style": "kebab-case",
28-
"type": "element"
23+
"style": "camelCase"
2924
}
3025
],
31-
"@angular-eslint/directive-selector": [
26+
"@angular-eslint/component-selector": [
3227
"error",
3328
{
29+
"type": "element",
3430
"prefix": "app",
35-
"style": "camelCase",
36-
"type": "attribute"
31+
"style": "kebab-case"
3732
}
38-
]
39-
,
40-
"object-curly-spacing": ["error", "always"]
33+
],
34+
"object-curly-spacing": ["error", "always"]
4135
}
4236
},
4337
{
4438
"files": [
4539
"*.html"
4640
],
4741
"extends": [
48-
"plugin:@angular-eslint/template/recommended"
42+
"plugin:@angular-eslint/template/recommended",
43+
"plugin:@angular-eslint/template/accessibility"
4944
],
5045
"rules": {}
5146
}

.gitignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@
1212
out/
1313
*.iml
1414

15-
# gradle local cache
16-
.gradle/
1715
build/
18-
16+
.jest-cache/
17+
.angular/
1918
# IDE - VSCode
2019
.vscode/*
2120
!.vscode/settings.json

angular.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,9 @@
9797
"test": {
9898
"builder": "@angular-devkit/build-angular:jest",
9999
"options": {
100-
"polyfills": ["src/polyfills.ts"],
100+
"polyfills": [
101+
"src/polyfills.ts"
102+
],
101103
"tsConfig": "src/tsconfig.spec.json"
102104
}
103105
},

0 commit comments

Comments
 (0)