@futdevpro/fsm-dynamo 1.9.10 → 1.9.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (124) hide show
  1. package/.github/workflows/main.yml +222 -0
  2. package/HOWTO.md +15 -15
  3. package/README.md +17 -17
  4. package/build/_models/control-models/error.control-model.js +1 -1
  5. package/build/_models/control-models/error.control-model.js.map +1 -1
  6. package/build/_models/control-models/error.control-model.spec.js +25 -6
  7. package/build/_models/control-models/error.control-model.spec.js.map +1 -1
  8. package/build/_modules/utils.index.d.ts +2 -0
  9. package/build/_modules/utils.index.d.ts.map +1 -0
  10. package/build/_modules/utils.index.js +5 -0
  11. package/build/_modules/utils.index.js.map +1 -0
  12. package/futdevpro-fsm-dynamo-01.09.14.tgz +0 -0
  13. package/nodemon.json +11 -11
  14. package/package.json +160 -151
  15. package/src/_collections/assets/location/country-codes-ISO-3166.json +3239 -3239
  16. package/src/_collections/assets/location/country-divisions-ISO-3166-all-list.json +19035 -19035
  17. package/src/_collections/assets/location/country-divisions-ISO-3166.json +4993 -4993
  18. package/src/_collections/assets/location/country-phone-codes.json +1203 -1203
  19. package/src/_collections/constants/country-divisions.const.ts +9 -9
  20. package/src/_collections/constants/courtry-isos.const.ts +8 -8
  21. package/src/_collections/constants/error-defaults.const.ts +11 -11
  22. package/src/_collections/constants/index.ts +15 -15
  23. package/src/_collections/constants/module-settings/custom-data-module-settings.const.ts +15 -15
  24. package/src/_collections/constants/module-settings/index.ts +8 -8
  25. package/src/_collections/constants/module-settings/test-module-settings.const.ts +19 -19
  26. package/src/_collections/constants/module-settings/usage-module-settings.const.ts +19 -19
  27. package/src/_collections/constants/pipe-transforms.const.ts +35 -35
  28. package/src/_collections/constants/times.const.ts +8 -8
  29. package/src/_collections/index.ts +6 -6
  30. package/src/_collections/utils/array.util.spec.ts +39 -39
  31. package/src/_collections/utils/array.util.ts +137 -137
  32. package/src/_collections/utils/index.ts +18 -18
  33. package/src/_collections/utils/location.util.ts +55 -55
  34. package/src/_collections/utils/log.util.ts +239 -239
  35. package/src/_collections/utils/math/box-bounds.util.ts +85 -85
  36. package/src/_collections/utils/math/index.ts +5 -5
  37. package/src/_collections/utils/math/math.util.ts +53 -53
  38. package/src/_collections/utils/math/random.util.ts +80 -80
  39. package/src/_collections/utils/math/trigonometry.util.ts +73 -73
  40. package/src/_collections/utils/math/vector2.util.ts +197 -197
  41. package/src/_collections/utils/pipe-transforms/country-pipe.util.ts +18 -18
  42. package/src/_collections/utils/pipe-transforms/custom-pipe.util.ts +9 -9
  43. package/src/_collections/utils/pipe-transforms/division-pipe.util.ts +20 -20
  44. package/src/_collections/utils/pipe-transforms/index.ts +15 -15
  45. package/src/_collections/utils/pipe-transforms/list-pipe.util.ts +10 -10
  46. package/src/_collections/utils/pipe-transforms/multi-pipe-pipe.util.ts +160 -160
  47. package/src/_collections/utils/pipe-transforms/obj-key-pipe.util.ts +9 -9
  48. package/src/_collections/utils/pipe-transforms/range-pipe.util.ts +94 -94
  49. package/src/_collections/utils/pipe-transforms/region-pipe.util.ts +18 -18
  50. package/src/_collections/utils/pipe-transforms/replace-pipe.util.ts +11 -11
  51. package/src/_collections/utils/pipe-transforms/slider-pipe.util.ts +20 -20
  52. package/src/_collections/utils/pipe-transforms/smart-replace-pipe.util.ts +71 -71
  53. package/src/_collections/utils/regex/index.ts +4 -4
  54. package/src/_collections/utils/regex/password-regex.util.ts +52 -52
  55. package/src/_collections/utils/regex/regex.util.ts +6 -6
  56. package/src/_collections/utils/regex/username-regex.util.ts +33 -33
  57. package/src/_collections/utils/regions.util.ts +100 -100
  58. package/src/_collections/utils/round-list.util.ts +44 -44
  59. package/src/_collections/utils/shared.static-service.ts +177 -177
  60. package/src/_collections/utils/time.util.spec.ts +50 -50
  61. package/src/_collections/utils/time.util.ts +219 -219
  62. package/src/_collections/utils/type-cloning-facility.util.ts +121 -121
  63. package/src/_collections/utils/utilities.util.ts +130 -130
  64. package/src/_enums/basic-property-type.enum.ts +9 -9
  65. package/src/_enums/data-model-type.enum.ts +13 -13
  66. package/src/_enums/day-of-week.enum.ts +28 -28
  67. package/src/_enums/error-level.enum.ts +17 -17
  68. package/src/_enums/index.ts +16 -16
  69. package/src/_enums/location/index.ts +3 -3
  70. package/src/_enums/location/region.enum.ts +9 -9
  71. package/src/_enums/location/sub-region.enum.ts +26 -26
  72. package/src/_enums/location/subdivision-region-type.enum.ts +44 -44
  73. package/src/_enums/log-style.enum.ts +30 -30
  74. package/src/_enums/month.enum.ts +16 -16
  75. package/src/_enums/pipe.enum.ts +45 -45
  76. package/src/_enums/range-pipe-setting.enum.ts +11 -11
  77. package/src/_enums/time/day-of-week.enum.ts +28 -28
  78. package/src/_enums/time/index.ts +3 -3
  79. package/src/_enums/time/month.enum.ts +16 -16
  80. package/src/_enums/time/relative-date.enum.ts +13 -13
  81. package/src/_models/control-models/daily-usage-data.control-model.ts +21 -21
  82. package/src/_models/control-models/data-model-params.control-model.ts +39 -39
  83. package/src/_models/control-models/data-property-params.control-model.ts +106 -106
  84. package/src/_models/control-models/error.control-model.spec.ts +753 -716
  85. package/src/_models/control-models/error.control-model.ts +722 -722
  86. package/src/_models/control-models/index.ts +10 -10
  87. package/src/_models/control-models/poll.control-model.ts +113 -113
  88. package/src/_models/control-models/range-value.control-model.ts +142 -142
  89. package/src/_models/control-models/usage-action.control-model.ts +15 -15
  90. package/src/_models/control-models/usage-data.control-model.ts +20 -20
  91. package/src/_models/data-models/custom-data.data-model.ts +28 -28
  92. package/src/_models/data-models/index.ts +5 -5
  93. package/src/_models/data-models/metadata.data-model.ts +83 -83
  94. package/src/_models/data-models/usage-session.data-model.ts +53 -53
  95. package/src/_models/index.ts +12 -12
  96. package/src/_models/interfaces/error-defaults.interface.ts +11 -11
  97. package/src/_models/interfaces/index.ts +11 -11
  98. package/src/_models/interfaces/location/country-division.interface.ts +7 -7
  99. package/src/_models/interfaces/location/country-iso.interface.ts +21 -21
  100. package/src/_models/interfaces/location/country-phone-code.interface.ts +7 -7
  101. package/src/_models/interfaces/location/division-collection.interface.ts +10 -10
  102. package/src/_models/interfaces/location/division-region-data.interface.ts +8 -8
  103. package/src/_models/interfaces/location/geo-ip-location.interface.ts +26 -26
  104. package/src/_models/interfaces/location/index.ts +10 -10
  105. package/src/_models/interfaces/location/location-coordinates.interface.ts +5 -5
  106. package/src/_models/interfaces/multi-pipe-settings.type.ts +7 -7
  107. package/src/_models/interfaces/paged.interface.ts +11 -11
  108. package/src/_models/interfaces/pipe-transforms.interface.ts +29 -29
  109. package/src/_models/interfaces/random-weight.interface.ts +7 -7
  110. package/src/_models/interfaces/route-settings.interface.ts +11 -11
  111. package/src/_modules/collections.index.ts +2 -2
  112. package/src/_modules/constants.index.ts +2 -2
  113. package/src/_modules/custom-data-module.index.ts +6 -6
  114. package/src/_modules/data-modules.index.ts +9 -9
  115. package/src/_modules/enums.index.ts +2 -2
  116. package/src/_modules/error-module.index.ts +8 -8
  117. package/src/_modules/location.index.ts +15 -15
  118. package/src/_modules/models.index.ts +2 -2
  119. package/src/_modules/shared-service.index.ts +9 -9
  120. package/src/_modules/test-module.index.ts +5 -5
  121. package/src/_modules/usage-module.index.ts +10 -10
  122. package/src/_modules/utils.index.ts +4 -0
  123. package/tsconfig.json +29 -29
  124. package/tslint.json +153 -153
@@ -1,11 +1,11 @@
1
-
2
- export type DFM_RouteSettings<T> = DynamoFM_Route_Settings<T>;
3
- export type DFM_RouteS<T> = DynamoFM_Route_Settings<T>;
4
- export interface DynamoFM_Route_Settings<T> {
5
- mainRoute: string;
6
-
7
- /** TODO ezitten tökszar mert nem ellenőriz típust */
8
- endPoints: {
9
- [key in T as string]: string
10
- };
11
- }
1
+
2
+ export type DFM_RouteSettings<T> = DynamoFM_Route_Settings<T>;
3
+ export type DFM_RouteS<T> = DynamoFM_Route_Settings<T>;
4
+ export interface DynamoFM_Route_Settings<T> {
5
+ mainRoute: string;
6
+
7
+ /** TODO ezitten tökszar mert nem ellenőriz típust */
8
+ endPoints: {
9
+ [key in T as string]: string
10
+ };
11
+ }
@@ -1,2 +1,2 @@
1
-
2
- export * from '../_collections/utils';
1
+
2
+ export * from '../_collections/utils';
@@ -1,2 +1,2 @@
1
-
2
- export * from '../_collections/constants';
1
+
2
+ export * from '../_collections/constants';
@@ -1,6 +1,6 @@
1
-
2
- // CUSTOM-DATA MODULE
3
- export * from '../_models/data-models/custom-data.data-model';
4
- export * from '../_collections/constants/module-settings/custom-data-module-settings.const';
5
-
6
-
1
+
2
+ // CUSTOM-DATA MODULE
3
+ export * from '../_models/data-models/custom-data.data-model';
4
+ export * from '../_collections/constants/module-settings/custom-data-module-settings.const';
5
+
6
+
@@ -1,9 +1,9 @@
1
-
2
- // DATA MODULE
3
- export * from '../_models/data-models/metadata.data-model';
4
- export * from '../_models/control-models/data-model-params.control-model';
5
- export * from '../_models/control-models/data-property-params.control-model';
6
- export * from '../_models/control-models/error.control-model';
7
- export * from '../_enums/data-model-type.enum';
8
-
9
-
1
+
2
+ // DATA MODULE
3
+ export * from '../_models/data-models/metadata.data-model';
4
+ export * from '../_models/control-models/data-model-params.control-model';
5
+ export * from '../_models/control-models/data-property-params.control-model';
6
+ export * from '../_models/control-models/error.control-model';
7
+ export * from '../_enums/data-model-type.enum';
8
+
9
+
@@ -1,2 +1,2 @@
1
-
2
- export * from '../_enums';
1
+
2
+ export * from '../_enums';
@@ -1,8 +1,8 @@
1
-
2
- // ERROR MODULE
3
- export * from '../_models/control-models/error.control-model';
4
- export * from '../_collections/constants/error-defaults.const';
5
- export * from '../_models/interfaces/error-defaults.interface';
6
- export * from '../_enums/error-level.enum';
7
-
8
-
1
+
2
+ // ERROR MODULE
3
+ export * from '../_models/control-models/error.control-model';
4
+ export * from '../_collections/constants/error-defaults.const';
5
+ export * from '../_models/interfaces/error-defaults.interface';
6
+ export * from '../_enums/error-level.enum';
7
+
8
+
@@ -1,15 +1,15 @@
1
-
2
- // INTERFACES
3
- export * from '../_models/interfaces/location';
4
-
5
- // ENUMS
6
- export * from '../_enums/location/region.enum';
7
- export * from '../_enums/location/sub-region.enum';
8
- export * from '../_enums/location/subdivision-region-type.enum';
9
-
10
- // UTILS
11
- export * from '../_collections/utils/location.util';
12
- export * from '../_collections/utils/regions.util';
13
-
14
-
15
-
1
+
2
+ // INTERFACES
3
+ export * from '../_models/interfaces/location';
4
+
5
+ // ENUMS
6
+ export * from '../_enums/location/region.enum';
7
+ export * from '../_enums/location/sub-region.enum';
8
+ export * from '../_enums/location/subdivision-region-type.enum';
9
+
10
+ // UTILS
11
+ export * from '../_collections/utils/location.util';
12
+ export * from '../_collections/utils/regions.util';
13
+
14
+
15
+
@@ -1,2 +1,2 @@
1
-
2
- export * from '../_models';
1
+
2
+ export * from '../_models';
@@ -1,9 +1,9 @@
1
-
2
- // SHARED SERVICE MODULE
3
- export * from '../_collections/utils/shared.static-service';
4
- export * from '../_collections/constants/times.const';
5
- export * from '../_enums/log-style.enum';
6
- export * from '../_models/control-models/error.control-model';
7
- export * from '../_models/control-models/poll.control-model';
8
- export * from '../_models/interfaces/location/location-coordinates.interface';
9
- export * from '../_models/interfaces/location/geo-ip-location.interface';
1
+
2
+ // SHARED SERVICE MODULE
3
+ export * from '../_collections/utils/shared.static-service';
4
+ export * from '../_collections/constants/times.const';
5
+ export * from '../_enums/log-style.enum';
6
+ export * from '../_models/control-models/error.control-model';
7
+ export * from '../_models/control-models/poll.control-model';
8
+ export * from '../_models/interfaces/location/location-coordinates.interface';
9
+ export * from '../_models/interfaces/location/geo-ip-location.interface';
@@ -1,5 +1,5 @@
1
-
2
- // TEST MODULE
3
- export * from '../_collections/constants/module-settings/test-module-settings.const';
4
-
5
-
1
+
2
+ // TEST MODULE
3
+ export * from '../_collections/constants/module-settings/test-module-settings.const';
4
+
5
+
@@ -1,10 +1,10 @@
1
-
2
- // USAGE MODULE
3
- export * from '../_models/data-models/usage-session.data-model';
4
- export * from '../_collections/constants/module-settings/usage-module-settings.const';
5
- export * from '../_models/control-models/usage-data.control-model';
6
- export * from '../_models/control-models/daily-usage-data.control-model';
7
- export * from '../_models/control-models/usage-action.control-model';
8
- export * from '../_enums/time/relative-date.enum';
9
-
10
-
1
+
2
+ // USAGE MODULE
3
+ export * from '../_models/data-models/usage-session.data-model';
4
+ export * from '../_collections/constants/module-settings/usage-module-settings.const';
5
+ export * from '../_models/control-models/usage-data.control-model';
6
+ export * from '../_models/control-models/daily-usage-data.control-model';
7
+ export * from '../_models/control-models/usage-action.control-model';
8
+ export * from '../_enums/time/relative-date.enum';
9
+
10
+
@@ -0,0 +1,4 @@
1
+
2
+
3
+
4
+ export * from '../_collections/utils';
package/tsconfig.json CHANGED
@@ -1,30 +1,30 @@
1
- {
2
- "compilerOptions": {
3
- "incremental": false,
4
- "module": "commonjs",
5
- "target": "es2022",
6
- "lib": [
7
- "es6",
8
- "es2018",
9
- "es2022",
10
- "dom"
11
- ],
12
- "allowJs": true,
13
- "declaration": true,
14
- "declarationMap": true,
15
- "sourceMap": true,
16
- "outDir": "./build",
17
- "importHelpers": true,
18
- "moduleResolution": "node",
19
- "esModuleInterop": true,
20
- "skipLibCheck": true,
21
- "noImplicitOverride": true,
22
- "allowSyntheticDefaultImports": true,
23
- "forceConsistentCasingInFileNames": true,
24
- "resolveJsonModule": true
25
- },
26
- "include": [
27
- "src",
28
- "src/_collections/assets/*"
29
- ]
1
+ {
2
+ "compilerOptions": {
3
+ "incremental": false,
4
+ "module": "commonjs",
5
+ "target": "es2022",
6
+ "lib": [
7
+ "es6",
8
+ "es2018",
9
+ "es2022",
10
+ "dom"
11
+ ],
12
+ "allowJs": true,
13
+ "declaration": true,
14
+ "declarationMap": true,
15
+ "sourceMap": true,
16
+ "outDir": "./build",
17
+ "importHelpers": true,
18
+ "moduleResolution": "node",
19
+ "esModuleInterop": true,
20
+ "skipLibCheck": true,
21
+ "noImplicitOverride": true,
22
+ "allowSyntheticDefaultImports": true,
23
+ "forceConsistentCasingInFileNames": true,
24
+ "resolveJsonModule": true
25
+ },
26
+ "include": [
27
+ "src",
28
+ "src/_collections/assets/*"
29
+ ]
30
30
  }
package/tslint.json CHANGED
@@ -1,153 +1,153 @@
1
- {
2
- "extends": "tslint:recommended",
3
- "rulesDirectory": [
4
- "codelyzer"
5
- ],
6
- "rules": {
7
- "align": {
8
- "options": [
9
- "parameters",
10
- "statements"
11
- ]
12
- },
13
- "array-type": false,
14
- "arrow-return-shorthand": true,
15
- "curly": true,
16
- "deprecation": {
17
- "severity": "warning"
18
- },
19
- "eofline": true,
20
- "import-blacklist": [
21
- true,
22
- "rxjs/Rx"
23
- ],
24
- "import-spacing": true,
25
- "indent": {
26
- "options": [
27
- "spaces"
28
- ]
29
- },
30
- "max-classes-per-file": false,
31
- "max-line-length": [
32
- true,
33
- 140
34
- ],
35
- "member-ordering": [
36
- true,
37
- {
38
- "order": [
39
- "static-field",
40
- "instance-field",
41
- "static-method",
42
- "instance-method"
43
- ]
44
- }
45
- ],
46
- "no-console": [
47
- true,
48
- "debug",
49
- "info",
50
- "time",
51
- "timeEnd",
52
- "trace"
53
- ],
54
- "no-empty": false,
55
- "no-inferrable-types": [
56
- true,
57
- "ignore-params"
58
- ],
59
- "no-non-null-assertion": true,
60
- "no-redundant-jsdoc": true,
61
- "no-switch-case-fall-through": true,
62
- "no-var-requires": false,
63
- "object-literal-key-quotes": [
64
- true,
65
- "as-needed"
66
- ],
67
- "quotemark": [
68
- true,
69
- "single"
70
- ],
71
- "semicolon": {
72
- "options": [
73
- "always"
74
- ]
75
- },
76
- "space-before-function-paren": {
77
- "options": {
78
- "anonymous": "never",
79
- "asyncArrow": "always",
80
- "constructor": "never",
81
- "method": "never",
82
- "named": "never"
83
- }
84
- },
85
- "typedef": [
86
- true,
87
- "call-signature"
88
- ],
89
- "typedef-whitespace": {
90
- "options": [
91
- {
92
- "call-signature": "nospace",
93
- "index-signature": "nospace",
94
- "parameter": "nospace",
95
- "property-declaration": "nospace",
96
- "variable-declaration": "nospace"
97
- },
98
- {
99
- "call-signature": "onespace",
100
- "index-signature": "onespace",
101
- "parameter": "onespace",
102
- "property-declaration": "onespace",
103
- "variable-declaration": "onespace"
104
- }
105
- ]
106
- },
107
- "variable-name": {
108
- "options": [
109
- "ban-keywords",
110
- "check-format",
111
- "allow-pascal-case"
112
- ]
113
- },
114
- "whitespace": {
115
- "options": [
116
- "check-branch",
117
- "check-decl",
118
- "check-operator",
119
- "check-separator",
120
- "check-type",
121
- "check-typecast"
122
- ]
123
- },
124
- "component-class-suffix": true,
125
- "contextual-lifecycle": true,
126
- "directive-class-suffix": true,
127
- "no-conflicting-lifecycle": true,
128
- "no-host-metadata-property": true,
129
- "no-input-rename": true,
130
- "no-inputs-metadata-property": true,
131
- "no-output-native": true,
132
- "no-output-on-prefix": true,
133
- "no-output-rename": true,
134
- "no-outputs-metadata-property": true,
135
- "template-banana-in-box": true,
136
- "template-no-negated-async": true,
137
- "use-lifecycle-interface": true,
138
- "use-pipe-transform-interface": true,
139
-
140
- "directive-selector": [
141
- true,
142
- "attribute",
143
- "app",
144
- "camelCase"
145
- ],
146
- "component-selector": [
147
- false,
148
- "element",
149
- "app",
150
- "kebab-case"
151
- ]
152
- }
153
- }
1
+ {
2
+ "extends": "tslint:recommended",
3
+ "rulesDirectory": [
4
+ "codelyzer"
5
+ ],
6
+ "rules": {
7
+ "align": {
8
+ "options": [
9
+ "parameters",
10
+ "statements"
11
+ ]
12
+ },
13
+ "array-type": false,
14
+ "arrow-return-shorthand": true,
15
+ "curly": true,
16
+ "deprecation": {
17
+ "severity": "warning"
18
+ },
19
+ "eofline": true,
20
+ "import-blacklist": [
21
+ true,
22
+ "rxjs/Rx"
23
+ ],
24
+ "import-spacing": true,
25
+ "indent": {
26
+ "options": [
27
+ "spaces"
28
+ ]
29
+ },
30
+ "max-classes-per-file": false,
31
+ "max-line-length": [
32
+ true,
33
+ 140
34
+ ],
35
+ "member-ordering": [
36
+ true,
37
+ {
38
+ "order": [
39
+ "static-field",
40
+ "instance-field",
41
+ "static-method",
42
+ "instance-method"
43
+ ]
44
+ }
45
+ ],
46
+ "no-console": [
47
+ true,
48
+ "debug",
49
+ "info",
50
+ "time",
51
+ "timeEnd",
52
+ "trace"
53
+ ],
54
+ "no-empty": false,
55
+ "no-inferrable-types": [
56
+ true,
57
+ "ignore-params"
58
+ ],
59
+ "no-non-null-assertion": true,
60
+ "no-redundant-jsdoc": true,
61
+ "no-switch-case-fall-through": true,
62
+ "no-var-requires": false,
63
+ "object-literal-key-quotes": [
64
+ true,
65
+ "as-needed"
66
+ ],
67
+ "quotemark": [
68
+ true,
69
+ "single"
70
+ ],
71
+ "semicolon": {
72
+ "options": [
73
+ "always"
74
+ ]
75
+ },
76
+ "space-before-function-paren": {
77
+ "options": {
78
+ "anonymous": "never",
79
+ "asyncArrow": "always",
80
+ "constructor": "never",
81
+ "method": "never",
82
+ "named": "never"
83
+ }
84
+ },
85
+ "typedef": [
86
+ true,
87
+ "call-signature"
88
+ ],
89
+ "typedef-whitespace": {
90
+ "options": [
91
+ {
92
+ "call-signature": "nospace",
93
+ "index-signature": "nospace",
94
+ "parameter": "nospace",
95
+ "property-declaration": "nospace",
96
+ "variable-declaration": "nospace"
97
+ },
98
+ {
99
+ "call-signature": "onespace",
100
+ "index-signature": "onespace",
101
+ "parameter": "onespace",
102
+ "property-declaration": "onespace",
103
+ "variable-declaration": "onespace"
104
+ }
105
+ ]
106
+ },
107
+ "variable-name": {
108
+ "options": [
109
+ "ban-keywords",
110
+ "check-format",
111
+ "allow-pascal-case"
112
+ ]
113
+ },
114
+ "whitespace": {
115
+ "options": [
116
+ "check-branch",
117
+ "check-decl",
118
+ "check-operator",
119
+ "check-separator",
120
+ "check-type",
121
+ "check-typecast"
122
+ ]
123
+ },
124
+ "component-class-suffix": true,
125
+ "contextual-lifecycle": true,
126
+ "directive-class-suffix": true,
127
+ "no-conflicting-lifecycle": true,
128
+ "no-host-metadata-property": true,
129
+ "no-input-rename": true,
130
+ "no-inputs-metadata-property": true,
131
+ "no-output-native": true,
132
+ "no-output-on-prefix": true,
133
+ "no-output-rename": true,
134
+ "no-outputs-metadata-property": true,
135
+ "template-banana-in-box": true,
136
+ "template-no-negated-async": true,
137
+ "use-lifecycle-interface": true,
138
+ "use-pipe-transform-interface": true,
139
+
140
+ "directive-selector": [
141
+ true,
142
+ "attribute",
143
+ "app",
144
+ "camelCase"
145
+ ],
146
+ "component-selector": [
147
+ false,
148
+ "element",
149
+ "app",
150
+ "kebab-case"
151
+ ]
152
+ }
153
+ }