@ngrx/eslint-plugin 14.0.0-beta.0
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.
- package/jest.config.js +22 -0
- package/jest.config.js.map +1 -0
- package/migrations/migration.json +3 -0
- package/package.json +51 -0
- package/schematics/collection.json +10 -0
- package/schematics/ng-add/index.js +51 -0
- package/schematics/ng-add/index.js.map +1 -0
- package/schematics/ng-add/schema.js +3 -0
- package/schematics/ng-add/schema.js.map +1 -0
- package/schematics/ng-add/schema.json +87 -0
- package/scripts/generate-config.js +85 -0
- package/scripts/generate-config.js.map +1 -0
- package/scripts/generate-docs.js +90 -0
- package/scripts/generate-docs.js.map +1 -0
- package/scripts/generate-overview.js +98 -0
- package/scripts/generate-overview.js.map +1 -0
- package/spec/utils/index.js +22 -0
- package/spec/utils/index.js.map +1 -0
- package/src/configs/all-requiring-type-checking.js +46 -0
- package/src/configs/all-requiring-type-checking.js.map +1 -0
- package/src/configs/all.js +39 -0
- package/src/configs/all.js.map +1 -0
- package/src/configs/component-store-strict.js +11 -0
- package/src/configs/component-store-strict.js.map +1 -0
- package/src/configs/component-store.js +11 -0
- package/src/configs/component-store.js.map +1 -0
- package/src/configs/effects-requiring-type-checking.js +27 -0
- package/src/configs/effects-requiring-type-checking.js.map +1 -0
- package/src/configs/effects-strict-requiring-type-checking.js +27 -0
- package/src/configs/effects-strict-requiring-type-checking.js.map +1 -0
- package/src/configs/effects-strict.js +20 -0
- package/src/configs/effects-strict.js.map +1 -0
- package/src/configs/effects.js +20 -0
- package/src/configs/effects.js.map +1 -0
- package/src/configs/index.js +33 -0
- package/src/configs/index.js.map +1 -0
- package/src/configs/recommended-requiring-type-checking.js +46 -0
- package/src/configs/recommended-requiring-type-checking.js.map +1 -0
- package/src/configs/recommended.js +39 -0
- package/src/configs/recommended.js.map +1 -0
- package/src/configs/store-strict.js +30 -0
- package/src/configs/store-strict.js.map +1 -0
- package/src/configs/store.js +30 -0
- package/src/configs/store.js.map +1 -0
- package/src/configs/strict-requiring-type-checking.js +46 -0
- package/src/configs/strict-requiring-type-checking.js.map +1 -0
- package/src/configs/strict.js +39 -0
- package/src/configs/strict.js.map +1 -0
- package/src/index.js +8 -0
- package/src/index.js.map +1 -0
- package/src/rule-creator.js +29 -0
- package/src/rule-creator.js.map +1 -0
- package/src/rules/component-store/updater-explicit-return-type.js +69 -0
- package/src/rules/component-store/updater-explicit-return-type.js.map +1 -0
- package/src/rules/effects/avoid-cyclic-effects.js +202 -0
- package/src/rules/effects/avoid-cyclic-effects.js.map +1 -0
- package/src/rules/effects/no-dispatch-in-effects.js +83 -0
- package/src/rules/effects/no-dispatch-in-effects.js.map +1 -0
- package/src/rules/effects/no-effect-decorator-and-creator.js +107 -0
- package/src/rules/effects/no-effect-decorator-and-creator.js.map +1 -0
- package/src/rules/effects/no-effect-decorator.js +124 -0
- package/src/rules/effects/no-effect-decorator.js.map +1 -0
- package/src/rules/effects/no-effects-in-providers.js +105 -0
- package/src/rules/effects/no-effects-in-providers.js.map +1 -0
- package/src/rules/effects/no-multiple-actions-in-effects.js +77 -0
- package/src/rules/effects/no-multiple-actions-in-effects.js.map +1 -0
- package/src/rules/effects/prefer-action-creator-in-of-type.js +58 -0
- package/src/rules/effects/prefer-action-creator-in-of-type.js.map +1 -0
- package/src/rules/effects/prefer-concat-latest-from.js +153 -0
- package/src/rules/effects/prefer-concat-latest-from.js.map +1 -0
- package/src/rules/effects/prefer-effect-callback-in-block-statement.js +99 -0
- package/src/rules/effects/prefer-effect-callback-in-block-statement.js.map +1 -0
- package/src/rules/effects/use-effects-lifecycle-interface.js +88 -0
- package/src/rules/effects/use-effects-lifecycle-interface.js.map +1 -0
- package/src/rules/index.js +59 -0
- package/src/rules/index.js.map +1 -0
- package/src/rules/store/avoid-combining-selectors.js +65 -0
- package/src/rules/store/avoid-combining-selectors.js.map +1 -0
- package/src/rules/store/avoid-dispatching-multiple-actions-sequentially.js +95 -0
- package/src/rules/store/avoid-dispatching-multiple-actions-sequentially.js.map +1 -0
- package/src/rules/store/avoid-duplicate-actions-in-reducer.js +150 -0
- package/src/rules/store/avoid-duplicate-actions-in-reducer.js.map +1 -0
- package/src/rules/store/avoid-mapping-selectors.js +82 -0
- package/src/rules/store/avoid-mapping-selectors.js.map +1 -0
- package/src/rules/store/good-action-hygiene.js +84 -0
- package/src/rules/store/good-action-hygiene.js.map +1 -0
- package/src/rules/store/no-multiple-global-stores.js +157 -0
- package/src/rules/store/no-multiple-global-stores.js.map +1 -0
- package/src/rules/store/no-reducer-in-key-names.js +76 -0
- package/src/rules/store/no-reducer-in-key-names.js.map +1 -0
- package/src/rules/store/no-store-subscription.js +64 -0
- package/src/rules/store/no-store-subscription.js.map +1 -0
- package/src/rules/store/no-typed-global-store.js +101 -0
- package/src/rules/store/no-typed-global-store.js.map +1 -0
- package/src/rules/store/on-function-explicit-return-type.js +106 -0
- package/src/rules/store/on-function-explicit-return-type.js.map +1 -0
- package/src/rules/store/prefer-action-creator-in-dispatch.js +70 -0
- package/src/rules/store/prefer-action-creator-in-dispatch.js.map +1 -0
- package/src/rules/store/prefer-action-creator.js +58 -0
- package/src/rules/store/prefer-action-creator.js.map +1 -0
- package/src/rules/store/prefer-inline-action-props.js +72 -0
- package/src/rules/store/prefer-inline-action-props.js.map +1 -0
- package/src/rules/store/prefer-one-generic-in-create-for-feature-selector.js +93 -0
- package/src/rules/store/prefer-one-generic-in-create-for-feature-selector.js.map +1 -0
- package/src/rules/store/prefer-selector-in-select.js +93 -0
- package/src/rules/store/prefer-selector-in-select.js.map +1 -0
- package/src/rules/store/prefix-selectors-with-select.js +107 -0
- package/src/rules/store/prefix-selectors-with-select.js.map +1 -0
- package/src/rules/store/select-style.js +196 -0
- package/src/rules/store/select-style.js.map +1 -0
- package/src/rules/store/use-consistent-global-store-name.js +139 -0
- package/src/rules/store/use-consistent-global-store-name.js.map +1 -0
- package/src/utils/helper-functions/docs.js +8 -0
- package/src/utils/helper-functions/docs.js.map +1 -0
- package/src/utils/helper-functions/folder.js +118 -0
- package/src/utils/helper-functions/folder.js.map +1 -0
- package/src/utils/helper-functions/guards.js +56 -0
- package/src/utils/helper-functions/guards.js.map +1 -0
- package/src/utils/helper-functions/index.js +23 -0
- package/src/utils/helper-functions/index.js.map +1 -0
- package/src/utils/helper-functions/ngrx-modules.js +10 -0
- package/src/utils/helper-functions/ngrx-modules.js.map +1 -0
- package/src/utils/helper-functions/utils.js +302 -0
- package/src/utils/helper-functions/utils.js.map +1 -0
- package/src/utils/helper-functions/versions.js +70 -0
- package/src/utils/helper-functions/versions.js.map +1 -0
- package/src/utils/index.js +19 -0
- package/src/utils/index.js.map +1 -0
- package/src/utils/selectors/index.js +58 -0
- package/src/utils/selectors/index.js.map +1 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DO NOT EDIT
|
|
4
|
+
* This file is generated
|
|
5
|
+
*/
|
|
6
|
+
module.exports = {
|
|
7
|
+
parser: '@typescript-eslint/parser',
|
|
8
|
+
parserOptions: {
|
|
9
|
+
ecmaVersion: 2020,
|
|
10
|
+
sourceType: 'module',
|
|
11
|
+
project: './tsconfig.json'
|
|
12
|
+
},
|
|
13
|
+
plugins: ['@ngrx'],
|
|
14
|
+
rules: {
|
|
15
|
+
'@ngrx/updater-explicit-return-type': 'warn',
|
|
16
|
+
'@ngrx/avoid-cyclic-effects': 'warn',
|
|
17
|
+
'@ngrx/no-dispatch-in-effects': 'warn',
|
|
18
|
+
'@ngrx/no-effect-decorator-and-creator': 'error',
|
|
19
|
+
'@ngrx/no-effect-decorator': 'warn',
|
|
20
|
+
'@ngrx/no-effects-in-providers': 'error',
|
|
21
|
+
'@ngrx/no-multiple-actions-in-effects': 'warn',
|
|
22
|
+
'@ngrx/prefer-action-creator-in-of-type': 'warn',
|
|
23
|
+
'@ngrx/prefer-concat-latest-from': 'warn',
|
|
24
|
+
'@ngrx/prefer-effect-callback-in-block-statement': 'warn',
|
|
25
|
+
'@ngrx/use-effects-lifecycle-interface': 'warn',
|
|
26
|
+
'@ngrx/avoid-combining-selectors': 'warn',
|
|
27
|
+
'@ngrx/avoid-dispatching-multiple-actions-sequentially': 'warn',
|
|
28
|
+
'@ngrx/avoid-duplicate-actions-in-reducer': 'warn',
|
|
29
|
+
'@ngrx/avoid-mapping-selectors': 'warn',
|
|
30
|
+
'@ngrx/good-action-hygiene': 'warn',
|
|
31
|
+
'@ngrx/no-multiple-global-stores': 'warn',
|
|
32
|
+
'@ngrx/no-reducer-in-key-names': 'warn',
|
|
33
|
+
'@ngrx/no-store-subscription': 'warn',
|
|
34
|
+
'@ngrx/no-typed-global-store': 'warn',
|
|
35
|
+
'@ngrx/on-function-explicit-return-type': 'warn',
|
|
36
|
+
'@ngrx/prefer-action-creator-in-dispatch': 'warn',
|
|
37
|
+
'@ngrx/prefer-action-creator': 'warn',
|
|
38
|
+
'@ngrx/prefer-inline-action-props': 'warn',
|
|
39
|
+
'@ngrx/prefer-one-generic-in-create-for-feature-selector': 'warn',
|
|
40
|
+
'@ngrx/prefer-selector-in-select': 'warn',
|
|
41
|
+
'@ngrx/prefix-selectors-with-select': 'warn',
|
|
42
|
+
'@ngrx/select-style': 'warn',
|
|
43
|
+
'@ngrx/use-consistent-global-store-name': 'warn'
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
//# sourceMappingURL=all-requiring-type-checking.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"all-requiring-type-checking.js","sourceRoot":"","sources":["../../../../../modules/eslint-plugin/src/configs/all-requiring-type-checking.ts"],"names":[],"mappings":";AAAA;;;GAGG;AAEH,iBAAS;IACP,MAAM,EAAE,2BAA2B;IACnC,aAAa,EAAE;QACb,WAAW,EAAE,IAAI;QACjB,UAAU,EAAE,QAAQ;QACpB,OAAO,EAAE,iBAAiB;KAC3B;IACD,OAAO,EAAE,CAAC,OAAO,CAAC;IAClB,KAAK,EAAE;QACL,oCAAoC,EAAE,MAAM;QAC5C,4BAA4B,EAAE,MAAM;QACpC,8BAA8B,EAAE,MAAM;QACtC,uCAAuC,EAAE,OAAO;QAChD,2BAA2B,EAAE,MAAM;QACnC,+BAA+B,EAAE,OAAO;QACxC,sCAAsC,EAAE,MAAM;QAC9C,wCAAwC,EAAE,MAAM;QAChD,iCAAiC,EAAE,MAAM;QACzC,iDAAiD,EAAE,MAAM;QACzD,uCAAuC,EAAE,MAAM;QAC/C,iCAAiC,EAAE,MAAM;QACzC,uDAAuD,EAAE,MAAM;QAC/D,0CAA0C,EAAE,MAAM;QAClD,+BAA+B,EAAE,MAAM;QACvC,2BAA2B,EAAE,MAAM;QACnC,iCAAiC,EAAE,MAAM;QACzC,+BAA+B,EAAE,MAAM;QACvC,6BAA6B,EAAE,MAAM;QACrC,6BAA6B,EAAE,MAAM;QACrC,wCAAwC,EAAE,MAAM;QAChD,yCAAyC,EAAE,MAAM;QACjD,6BAA6B,EAAE,MAAM;QACrC,kCAAkC,EAAE,MAAM;QAC1C,yDAAyD,EAAE,MAAM;QACjE,iCAAiC,EAAE,MAAM;QACzC,oCAAoC,EAAE,MAAM;QAC5C,oBAAoB,EAAE,MAAM;QAC5B,wCAAwC,EAAE,MAAM;KACjD;CACF,CAAC","sourcesContent":["/**\n * DO NOT EDIT\n * This file is generated\n */\n\nexport = {\n parser: '@typescript-eslint/parser',\n parserOptions: {\n ecmaVersion: 2020,\n sourceType: 'module',\n project: './tsconfig.json',\n },\n plugins: ['@ngrx'],\n rules: {\n '@ngrx/updater-explicit-return-type': 'warn',\n '@ngrx/avoid-cyclic-effects': 'warn',\n '@ngrx/no-dispatch-in-effects': 'warn',\n '@ngrx/no-effect-decorator-and-creator': 'error',\n '@ngrx/no-effect-decorator': 'warn',\n '@ngrx/no-effects-in-providers': 'error',\n '@ngrx/no-multiple-actions-in-effects': 'warn',\n '@ngrx/prefer-action-creator-in-of-type': 'warn',\n '@ngrx/prefer-concat-latest-from': 'warn',\n '@ngrx/prefer-effect-callback-in-block-statement': 'warn',\n '@ngrx/use-effects-lifecycle-interface': 'warn',\n '@ngrx/avoid-combining-selectors': 'warn',\n '@ngrx/avoid-dispatching-multiple-actions-sequentially': 'warn',\n '@ngrx/avoid-duplicate-actions-in-reducer': 'warn',\n '@ngrx/avoid-mapping-selectors': 'warn',\n '@ngrx/good-action-hygiene': 'warn',\n '@ngrx/no-multiple-global-stores': 'warn',\n '@ngrx/no-reducer-in-key-names': 'warn',\n '@ngrx/no-store-subscription': 'warn',\n '@ngrx/no-typed-global-store': 'warn',\n '@ngrx/on-function-explicit-return-type': 'warn',\n '@ngrx/prefer-action-creator-in-dispatch': 'warn',\n '@ngrx/prefer-action-creator': 'warn',\n '@ngrx/prefer-inline-action-props': 'warn',\n '@ngrx/prefer-one-generic-in-create-for-feature-selector': 'warn',\n '@ngrx/prefer-selector-in-select': 'warn',\n '@ngrx/prefix-selectors-with-select': 'warn',\n '@ngrx/select-style': 'warn',\n '@ngrx/use-consistent-global-store-name': 'warn',\n },\n};\n"]}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DO NOT EDIT
|
|
4
|
+
* This file is generated
|
|
5
|
+
*/
|
|
6
|
+
module.exports = {
|
|
7
|
+
parser: '@typescript-eslint/parser',
|
|
8
|
+
plugins: ['@ngrx'],
|
|
9
|
+
rules: {
|
|
10
|
+
'@ngrx/updater-explicit-return-type': 'warn',
|
|
11
|
+
'@ngrx/no-dispatch-in-effects': 'warn',
|
|
12
|
+
'@ngrx/no-effect-decorator-and-creator': 'error',
|
|
13
|
+
'@ngrx/no-effect-decorator': 'warn',
|
|
14
|
+
'@ngrx/no-effects-in-providers': 'error',
|
|
15
|
+
'@ngrx/prefer-action-creator-in-of-type': 'warn',
|
|
16
|
+
'@ngrx/prefer-concat-latest-from': 'warn',
|
|
17
|
+
'@ngrx/prefer-effect-callback-in-block-statement': 'warn',
|
|
18
|
+
'@ngrx/use-effects-lifecycle-interface': 'warn',
|
|
19
|
+
'@ngrx/avoid-combining-selectors': 'warn',
|
|
20
|
+
'@ngrx/avoid-dispatching-multiple-actions-sequentially': 'warn',
|
|
21
|
+
'@ngrx/avoid-duplicate-actions-in-reducer': 'warn',
|
|
22
|
+
'@ngrx/avoid-mapping-selectors': 'warn',
|
|
23
|
+
'@ngrx/good-action-hygiene': 'warn',
|
|
24
|
+
'@ngrx/no-multiple-global-stores': 'warn',
|
|
25
|
+
'@ngrx/no-reducer-in-key-names': 'warn',
|
|
26
|
+
'@ngrx/no-store-subscription': 'warn',
|
|
27
|
+
'@ngrx/no-typed-global-store': 'warn',
|
|
28
|
+
'@ngrx/on-function-explicit-return-type': 'warn',
|
|
29
|
+
'@ngrx/prefer-action-creator-in-dispatch': 'warn',
|
|
30
|
+
'@ngrx/prefer-action-creator': 'warn',
|
|
31
|
+
'@ngrx/prefer-inline-action-props': 'warn',
|
|
32
|
+
'@ngrx/prefer-one-generic-in-create-for-feature-selector': 'warn',
|
|
33
|
+
'@ngrx/prefer-selector-in-select': 'warn',
|
|
34
|
+
'@ngrx/prefix-selectors-with-select': 'warn',
|
|
35
|
+
'@ngrx/select-style': 'warn',
|
|
36
|
+
'@ngrx/use-consistent-global-store-name': 'warn'
|
|
37
|
+
}
|
|
38
|
+
};
|
|
39
|
+
//# sourceMappingURL=all.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"all.js","sourceRoot":"","sources":["../../../../../modules/eslint-plugin/src/configs/all.ts"],"names":[],"mappings":";AAAA;;;GAGG;AAEH,iBAAS;IACP,MAAM,EAAE,2BAA2B;IAEnC,OAAO,EAAE,CAAC,OAAO,CAAC;IAClB,KAAK,EAAE;QACL,oCAAoC,EAAE,MAAM;QAC5C,8BAA8B,EAAE,MAAM;QACtC,uCAAuC,EAAE,OAAO;QAChD,2BAA2B,EAAE,MAAM;QACnC,+BAA+B,EAAE,OAAO;QACxC,wCAAwC,EAAE,MAAM;QAChD,iCAAiC,EAAE,MAAM;QACzC,iDAAiD,EAAE,MAAM;QACzD,uCAAuC,EAAE,MAAM;QAC/C,iCAAiC,EAAE,MAAM;QACzC,uDAAuD,EAAE,MAAM;QAC/D,0CAA0C,EAAE,MAAM;QAClD,+BAA+B,EAAE,MAAM;QACvC,2BAA2B,EAAE,MAAM;QACnC,iCAAiC,EAAE,MAAM;QACzC,+BAA+B,EAAE,MAAM;QACvC,6BAA6B,EAAE,MAAM;QACrC,6BAA6B,EAAE,MAAM;QACrC,wCAAwC,EAAE,MAAM;QAChD,yCAAyC,EAAE,MAAM;QACjD,6BAA6B,EAAE,MAAM;QACrC,kCAAkC,EAAE,MAAM;QAC1C,yDAAyD,EAAE,MAAM;QACjE,iCAAiC,EAAE,MAAM;QACzC,oCAAoC,EAAE,MAAM;QAC5C,oBAAoB,EAAE,MAAM;QAC5B,wCAAwC,EAAE,MAAM;KACjD;CACF,CAAC","sourcesContent":["/**\n * DO NOT EDIT\n * This file is generated\n */\n\nexport = {\n parser: '@typescript-eslint/parser',\n\n plugins: ['@ngrx'],\n rules: {\n '@ngrx/updater-explicit-return-type': 'warn',\n '@ngrx/no-dispatch-in-effects': 'warn',\n '@ngrx/no-effect-decorator-and-creator': 'error',\n '@ngrx/no-effect-decorator': 'warn',\n '@ngrx/no-effects-in-providers': 'error',\n '@ngrx/prefer-action-creator-in-of-type': 'warn',\n '@ngrx/prefer-concat-latest-from': 'warn',\n '@ngrx/prefer-effect-callback-in-block-statement': 'warn',\n '@ngrx/use-effects-lifecycle-interface': 'warn',\n '@ngrx/avoid-combining-selectors': 'warn',\n '@ngrx/avoid-dispatching-multiple-actions-sequentially': 'warn',\n '@ngrx/avoid-duplicate-actions-in-reducer': 'warn',\n '@ngrx/avoid-mapping-selectors': 'warn',\n '@ngrx/good-action-hygiene': 'warn',\n '@ngrx/no-multiple-global-stores': 'warn',\n '@ngrx/no-reducer-in-key-names': 'warn',\n '@ngrx/no-store-subscription': 'warn',\n '@ngrx/no-typed-global-store': 'warn',\n '@ngrx/on-function-explicit-return-type': 'warn',\n '@ngrx/prefer-action-creator-in-dispatch': 'warn',\n '@ngrx/prefer-action-creator': 'warn',\n '@ngrx/prefer-inline-action-props': 'warn',\n '@ngrx/prefer-one-generic-in-create-for-feature-selector': 'warn',\n '@ngrx/prefer-selector-in-select': 'warn',\n '@ngrx/prefix-selectors-with-select': 'warn',\n '@ngrx/select-style': 'warn',\n '@ngrx/use-consistent-global-store-name': 'warn',\n },\n};\n"]}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DO NOT EDIT
|
|
4
|
+
* This file is generated
|
|
5
|
+
*/
|
|
6
|
+
module.exports = {
|
|
7
|
+
parser: '@typescript-eslint/parser',
|
|
8
|
+
plugins: ['@ngrx'],
|
|
9
|
+
rules: { '@ngrx/updater-explicit-return-type': 'error' }
|
|
10
|
+
};
|
|
11
|
+
//# sourceMappingURL=component-store-strict.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"component-store-strict.js","sourceRoot":"","sources":["../../../../../modules/eslint-plugin/src/configs/component-store-strict.ts"],"names":[],"mappings":";AAAA;;;GAGG;AAEH,iBAAS;IACP,MAAM,EAAE,2BAA2B;IAEnC,OAAO,EAAE,CAAC,OAAO,CAAC;IAClB,KAAK,EAAE,EAAE,oCAAoC,EAAE,OAAO,EAAE;CACzD,CAAC","sourcesContent":["/**\n * DO NOT EDIT\n * This file is generated\n */\n\nexport = {\n parser: '@typescript-eslint/parser',\n\n plugins: ['@ngrx'],\n rules: { '@ngrx/updater-explicit-return-type': 'error' },\n};\n"]}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DO NOT EDIT
|
|
4
|
+
* This file is generated
|
|
5
|
+
*/
|
|
6
|
+
module.exports = {
|
|
7
|
+
parser: '@typescript-eslint/parser',
|
|
8
|
+
plugins: ['@ngrx'],
|
|
9
|
+
rules: { '@ngrx/updater-explicit-return-type': 'warn' }
|
|
10
|
+
};
|
|
11
|
+
//# sourceMappingURL=component-store.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"component-store.js","sourceRoot":"","sources":["../../../../../modules/eslint-plugin/src/configs/component-store.ts"],"names":[],"mappings":";AAAA;;;GAGG;AAEH,iBAAS;IACP,MAAM,EAAE,2BAA2B;IAEnC,OAAO,EAAE,CAAC,OAAO,CAAC;IAClB,KAAK,EAAE,EAAE,oCAAoC,EAAE,MAAM,EAAE;CACxD,CAAC","sourcesContent":["/**\n * DO NOT EDIT\n * This file is generated\n */\n\nexport = {\n parser: '@typescript-eslint/parser',\n\n plugins: ['@ngrx'],\n rules: { '@ngrx/updater-explicit-return-type': 'warn' },\n};\n"]}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DO NOT EDIT
|
|
4
|
+
* This file is generated
|
|
5
|
+
*/
|
|
6
|
+
module.exports = {
|
|
7
|
+
parser: '@typescript-eslint/parser',
|
|
8
|
+
parserOptions: {
|
|
9
|
+
ecmaVersion: 2020,
|
|
10
|
+
sourceType: 'module',
|
|
11
|
+
project: './tsconfig.json'
|
|
12
|
+
},
|
|
13
|
+
plugins: ['@ngrx'],
|
|
14
|
+
rules: {
|
|
15
|
+
'@ngrx/avoid-cyclic-effects': 'warn',
|
|
16
|
+
'@ngrx/no-dispatch-in-effects': 'warn',
|
|
17
|
+
'@ngrx/no-effect-decorator-and-creator': 'error',
|
|
18
|
+
'@ngrx/no-effect-decorator': 'warn',
|
|
19
|
+
'@ngrx/no-effects-in-providers': 'error',
|
|
20
|
+
'@ngrx/no-multiple-actions-in-effects': 'warn',
|
|
21
|
+
'@ngrx/prefer-action-creator-in-of-type': 'warn',
|
|
22
|
+
'@ngrx/prefer-concat-latest-from': 'warn',
|
|
23
|
+
'@ngrx/prefer-effect-callback-in-block-statement': 'warn',
|
|
24
|
+
'@ngrx/use-effects-lifecycle-interface': 'warn'
|
|
25
|
+
}
|
|
26
|
+
};
|
|
27
|
+
//# sourceMappingURL=effects-requiring-type-checking.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"effects-requiring-type-checking.js","sourceRoot":"","sources":["../../../../../modules/eslint-plugin/src/configs/effects-requiring-type-checking.ts"],"names":[],"mappings":";AAAA;;;GAGG;AAEH,iBAAS;IACP,MAAM,EAAE,2BAA2B;IACnC,aAAa,EAAE;QACb,WAAW,EAAE,IAAI;QACjB,UAAU,EAAE,QAAQ;QACpB,OAAO,EAAE,iBAAiB;KAC3B;IACD,OAAO,EAAE,CAAC,OAAO,CAAC;IAClB,KAAK,EAAE;QACL,4BAA4B,EAAE,MAAM;QACpC,8BAA8B,EAAE,MAAM;QACtC,uCAAuC,EAAE,OAAO;QAChD,2BAA2B,EAAE,MAAM;QACnC,+BAA+B,EAAE,OAAO;QACxC,sCAAsC,EAAE,MAAM;QAC9C,wCAAwC,EAAE,MAAM;QAChD,iCAAiC,EAAE,MAAM;QACzC,iDAAiD,EAAE,MAAM;QACzD,uCAAuC,EAAE,MAAM;KAChD;CACF,CAAC","sourcesContent":["/**\n * DO NOT EDIT\n * This file is generated\n */\n\nexport = {\n parser: '@typescript-eslint/parser',\n parserOptions: {\n ecmaVersion: 2020,\n sourceType: 'module',\n project: './tsconfig.json',\n },\n plugins: ['@ngrx'],\n rules: {\n '@ngrx/avoid-cyclic-effects': 'warn',\n '@ngrx/no-dispatch-in-effects': 'warn',\n '@ngrx/no-effect-decorator-and-creator': 'error',\n '@ngrx/no-effect-decorator': 'warn',\n '@ngrx/no-effects-in-providers': 'error',\n '@ngrx/no-multiple-actions-in-effects': 'warn',\n '@ngrx/prefer-action-creator-in-of-type': 'warn',\n '@ngrx/prefer-concat-latest-from': 'warn',\n '@ngrx/prefer-effect-callback-in-block-statement': 'warn',\n '@ngrx/use-effects-lifecycle-interface': 'warn',\n },\n};\n"]}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DO NOT EDIT
|
|
4
|
+
* This file is generated
|
|
5
|
+
*/
|
|
6
|
+
module.exports = {
|
|
7
|
+
parser: '@typescript-eslint/parser',
|
|
8
|
+
parserOptions: {
|
|
9
|
+
ecmaVersion: 2020,
|
|
10
|
+
sourceType: 'module',
|
|
11
|
+
project: './tsconfig.json'
|
|
12
|
+
},
|
|
13
|
+
plugins: ['@ngrx'],
|
|
14
|
+
rules: {
|
|
15
|
+
'@ngrx/avoid-cyclic-effects': 'error',
|
|
16
|
+
'@ngrx/no-dispatch-in-effects': 'error',
|
|
17
|
+
'@ngrx/no-effect-decorator-and-creator': 'error',
|
|
18
|
+
'@ngrx/no-effect-decorator': 'error',
|
|
19
|
+
'@ngrx/no-effects-in-providers': 'error',
|
|
20
|
+
'@ngrx/no-multiple-actions-in-effects': 'error',
|
|
21
|
+
'@ngrx/prefer-action-creator-in-of-type': 'error',
|
|
22
|
+
'@ngrx/prefer-concat-latest-from': 'error',
|
|
23
|
+
'@ngrx/prefer-effect-callback-in-block-statement': 'error',
|
|
24
|
+
'@ngrx/use-effects-lifecycle-interface': 'error'
|
|
25
|
+
}
|
|
26
|
+
};
|
|
27
|
+
//# sourceMappingURL=effects-strict-requiring-type-checking.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"effects-strict-requiring-type-checking.js","sourceRoot":"","sources":["../../../../../modules/eslint-plugin/src/configs/effects-strict-requiring-type-checking.ts"],"names":[],"mappings":";AAAA;;;GAGG;AAEH,iBAAS;IACP,MAAM,EAAE,2BAA2B;IACnC,aAAa,EAAE;QACb,WAAW,EAAE,IAAI;QACjB,UAAU,EAAE,QAAQ;QACpB,OAAO,EAAE,iBAAiB;KAC3B;IACD,OAAO,EAAE,CAAC,OAAO,CAAC;IAClB,KAAK,EAAE;QACL,4BAA4B,EAAE,OAAO;QACrC,8BAA8B,EAAE,OAAO;QACvC,uCAAuC,EAAE,OAAO;QAChD,2BAA2B,EAAE,OAAO;QACpC,+BAA+B,EAAE,OAAO;QACxC,sCAAsC,EAAE,OAAO;QAC/C,wCAAwC,EAAE,OAAO;QACjD,iCAAiC,EAAE,OAAO;QAC1C,iDAAiD,EAAE,OAAO;QAC1D,uCAAuC,EAAE,OAAO;KACjD;CACF,CAAC","sourcesContent":["/**\n * DO NOT EDIT\n * This file is generated\n */\n\nexport = {\n parser: '@typescript-eslint/parser',\n parserOptions: {\n ecmaVersion: 2020,\n sourceType: 'module',\n project: './tsconfig.json',\n },\n plugins: ['@ngrx'],\n rules: {\n '@ngrx/avoid-cyclic-effects': 'error',\n '@ngrx/no-dispatch-in-effects': 'error',\n '@ngrx/no-effect-decorator-and-creator': 'error',\n '@ngrx/no-effect-decorator': 'error',\n '@ngrx/no-effects-in-providers': 'error',\n '@ngrx/no-multiple-actions-in-effects': 'error',\n '@ngrx/prefer-action-creator-in-of-type': 'error',\n '@ngrx/prefer-concat-latest-from': 'error',\n '@ngrx/prefer-effect-callback-in-block-statement': 'error',\n '@ngrx/use-effects-lifecycle-interface': 'error',\n },\n};\n"]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DO NOT EDIT
|
|
4
|
+
* This file is generated
|
|
5
|
+
*/
|
|
6
|
+
module.exports = {
|
|
7
|
+
parser: '@typescript-eslint/parser',
|
|
8
|
+
plugins: ['@ngrx'],
|
|
9
|
+
rules: {
|
|
10
|
+
'@ngrx/no-dispatch-in-effects': 'error',
|
|
11
|
+
'@ngrx/no-effect-decorator-and-creator': 'error',
|
|
12
|
+
'@ngrx/no-effect-decorator': 'error',
|
|
13
|
+
'@ngrx/no-effects-in-providers': 'error',
|
|
14
|
+
'@ngrx/prefer-action-creator-in-of-type': 'error',
|
|
15
|
+
'@ngrx/prefer-concat-latest-from': 'error',
|
|
16
|
+
'@ngrx/prefer-effect-callback-in-block-statement': 'error',
|
|
17
|
+
'@ngrx/use-effects-lifecycle-interface': 'error'
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
//# sourceMappingURL=effects-strict.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"effects-strict.js","sourceRoot":"","sources":["../../../../../modules/eslint-plugin/src/configs/effects-strict.ts"],"names":[],"mappings":";AAAA;;;GAGG;AAEH,iBAAS;IACP,MAAM,EAAE,2BAA2B;IAEnC,OAAO,EAAE,CAAC,OAAO,CAAC;IAClB,KAAK,EAAE;QACL,8BAA8B,EAAE,OAAO;QACvC,uCAAuC,EAAE,OAAO;QAChD,2BAA2B,EAAE,OAAO;QACpC,+BAA+B,EAAE,OAAO;QACxC,wCAAwC,EAAE,OAAO;QACjD,iCAAiC,EAAE,OAAO;QAC1C,iDAAiD,EAAE,OAAO;QAC1D,uCAAuC,EAAE,OAAO;KACjD;CACF,CAAC","sourcesContent":["/**\n * DO NOT EDIT\n * This file is generated\n */\n\nexport = {\n parser: '@typescript-eslint/parser',\n\n plugins: ['@ngrx'],\n rules: {\n '@ngrx/no-dispatch-in-effects': 'error',\n '@ngrx/no-effect-decorator-and-creator': 'error',\n '@ngrx/no-effect-decorator': 'error',\n '@ngrx/no-effects-in-providers': 'error',\n '@ngrx/prefer-action-creator-in-of-type': 'error',\n '@ngrx/prefer-concat-latest-from': 'error',\n '@ngrx/prefer-effect-callback-in-block-statement': 'error',\n '@ngrx/use-effects-lifecycle-interface': 'error',\n },\n};\n"]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DO NOT EDIT
|
|
4
|
+
* This file is generated
|
|
5
|
+
*/
|
|
6
|
+
module.exports = {
|
|
7
|
+
parser: '@typescript-eslint/parser',
|
|
8
|
+
plugins: ['@ngrx'],
|
|
9
|
+
rules: {
|
|
10
|
+
'@ngrx/no-dispatch-in-effects': 'warn',
|
|
11
|
+
'@ngrx/no-effect-decorator-and-creator': 'error',
|
|
12
|
+
'@ngrx/no-effect-decorator': 'warn',
|
|
13
|
+
'@ngrx/no-effects-in-providers': 'error',
|
|
14
|
+
'@ngrx/prefer-action-creator-in-of-type': 'warn',
|
|
15
|
+
'@ngrx/prefer-concat-latest-from': 'warn',
|
|
16
|
+
'@ngrx/prefer-effect-callback-in-block-statement': 'warn',
|
|
17
|
+
'@ngrx/use-effects-lifecycle-interface': 'warn'
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
//# sourceMappingURL=effects.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"effects.js","sourceRoot":"","sources":["../../../../../modules/eslint-plugin/src/configs/effects.ts"],"names":[],"mappings":";AAAA;;;GAGG;AAEH,iBAAS;IACP,MAAM,EAAE,2BAA2B;IAEnC,OAAO,EAAE,CAAC,OAAO,CAAC;IAClB,KAAK,EAAE;QACL,8BAA8B,EAAE,MAAM;QACtC,uCAAuC,EAAE,OAAO;QAChD,2BAA2B,EAAE,MAAM;QACnC,+BAA+B,EAAE,OAAO;QACxC,wCAAwC,EAAE,MAAM;QAChD,iCAAiC,EAAE,MAAM;QACzC,iDAAiD,EAAE,MAAM;QACzD,uCAAuC,EAAE,MAAM;KAChD;CACF,CAAC","sourcesContent":["/**\n * DO NOT EDIT\n * This file is generated\n */\n\nexport = {\n parser: '@typescript-eslint/parser',\n\n plugins: ['@ngrx'],\n rules: {\n '@ngrx/no-dispatch-in-effects': 'warn',\n '@ngrx/no-effect-decorator-and-creator': 'error',\n '@ngrx/no-effect-decorator': 'warn',\n '@ngrx/no-effects-in-providers': 'error',\n '@ngrx/prefer-action-creator-in-of-type': 'warn',\n '@ngrx/prefer-concat-latest-from': 'warn',\n '@ngrx/prefer-effect-callback-in-block-statement': 'warn',\n '@ngrx/use-effects-lifecycle-interface': 'warn',\n },\n};\n"]}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
exports.__esModule = true;
|
|
14
|
+
exports.configs = void 0;
|
|
15
|
+
var utils_1 = require("../utils");
|
|
16
|
+
// Copied from https://github.com/jest-community/eslint-plugin-jest/blob/main/src/index.ts
|
|
17
|
+
var interopRequireDefault = function (obj) {
|
|
18
|
+
return (obj === null || obj === void 0 ? void 0 : obj.__esModule) ? obj : { "default": obj };
|
|
19
|
+
};
|
|
20
|
+
var importDefault = function (moduleName) {
|
|
21
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
22
|
+
return interopRequireDefault(require(moduleName))["default"];
|
|
23
|
+
};
|
|
24
|
+
var configDir = __dirname;
|
|
25
|
+
var excludedFiles = ['index'];
|
|
26
|
+
exports.configs = Array.from((0, utils_1.traverseFolder)(configDir))
|
|
27
|
+
.filter(function (config) { return !excludedFiles.includes(config.file); })
|
|
28
|
+
.reduce(function (allConfigs, config) {
|
|
29
|
+
var _a;
|
|
30
|
+
var entry = importDefault(config.path);
|
|
31
|
+
return __assign(__assign({}, allConfigs), (_a = {}, _a[config.file] = entry, _a));
|
|
32
|
+
}, {});
|
|
33
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../modules/eslint-plugin/src/configs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AACA,kCAA0C;AAE1C,0FAA0F;AAE1F,IAAM,qBAAqB,GAAG,UAAC,GAAQ;IACrC,OAAA,CAAA,GAAG,aAAH,GAAG,uBAAH,GAAG,CAAE,UAAU,EAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,SAAO,EAAE,GAAG,EAAE;AAAxC,CAAwC,CAAC;AAE3C,IAAM,aAAa,GAAG,UAAC,UAAkB;IACvC,8DAA8D;IAC9D,OAAA,qBAAqB,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC,SAAO,CAAA;AAAlD,CAAkD,CAAC;AAErD,IAAM,SAAS,GAAG,SAAS,CAAC;AAC5B,IAAM,aAAa,GAAG,CAAC,OAAO,CAAC,CAAC;AAEnB,QAAA,OAAO,GAAG,KAAK,CAAC,IAAI,CAAC,IAAA,sBAAc,EAAC,SAAS,CAAC,CAAC;KACzD,MAAM,CAAC,UAAC,MAAM,IAAK,OAAA,CAAC,aAAa,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,EAApC,CAAoC,CAAC;KACxD,MAAM,CAA4C,UAAC,UAAU,EAAE,MAAM;;IACpE,IAAM,KAAK,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAA8B,CAAC;IACtE,6BACK,UAAU,gBACZ,MAAM,CAAC,IAAI,IAAG,KAAK,OACpB;AACJ,CAAC,EAAE,EAAE,CAAC,CAAC","sourcesContent":["import type { TSESLint } from '@typescript-eslint/experimental-utils';\nimport { traverseFolder } from '../utils';\n\n// Copied from https://github.com/jest-community/eslint-plugin-jest/blob/main/src/index.ts\n\nconst interopRequireDefault = (obj: any): { default: unknown } =>\n obj?.__esModule ? obj : { default: obj };\n\nconst importDefault = (moduleName: string) =>\n // eslint-disable-next-line @typescript-eslint/no-var-requires\n interopRequireDefault(require(moduleName)).default;\n\nconst configDir = __dirname;\nconst excludedFiles = ['index'];\n\nexport const configs = Array.from(traverseFolder(configDir))\n .filter((config) => !excludedFiles.includes(config.file))\n .reduce<Record<string, TSESLint.Linter.RuleEntry>>((allConfigs, config) => {\n const entry = importDefault(config.path) as TSESLint.Linter.RuleEntry;\n return {\n ...allConfigs,\n [config.file]: entry,\n };\n }, {});\n"]}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DO NOT EDIT
|
|
4
|
+
* This file is generated
|
|
5
|
+
*/
|
|
6
|
+
module.exports = {
|
|
7
|
+
parser: '@typescript-eslint/parser',
|
|
8
|
+
parserOptions: {
|
|
9
|
+
ecmaVersion: 2020,
|
|
10
|
+
sourceType: 'module',
|
|
11
|
+
project: './tsconfig.json'
|
|
12
|
+
},
|
|
13
|
+
plugins: ['@ngrx'],
|
|
14
|
+
rules: {
|
|
15
|
+
'@ngrx/updater-explicit-return-type': 'warn',
|
|
16
|
+
'@ngrx/avoid-cyclic-effects': 'warn',
|
|
17
|
+
'@ngrx/no-dispatch-in-effects': 'warn',
|
|
18
|
+
'@ngrx/no-effect-decorator-and-creator': 'error',
|
|
19
|
+
'@ngrx/no-effect-decorator': 'warn',
|
|
20
|
+
'@ngrx/no-effects-in-providers': 'error',
|
|
21
|
+
'@ngrx/no-multiple-actions-in-effects': 'warn',
|
|
22
|
+
'@ngrx/prefer-action-creator-in-of-type': 'warn',
|
|
23
|
+
'@ngrx/prefer-concat-latest-from': 'warn',
|
|
24
|
+
'@ngrx/prefer-effect-callback-in-block-statement': 'warn',
|
|
25
|
+
'@ngrx/use-effects-lifecycle-interface': 'warn',
|
|
26
|
+
'@ngrx/avoid-combining-selectors': 'warn',
|
|
27
|
+
'@ngrx/avoid-dispatching-multiple-actions-sequentially': 'warn',
|
|
28
|
+
'@ngrx/avoid-duplicate-actions-in-reducer': 'warn',
|
|
29
|
+
'@ngrx/avoid-mapping-selectors': 'warn',
|
|
30
|
+
'@ngrx/good-action-hygiene': 'warn',
|
|
31
|
+
'@ngrx/no-multiple-global-stores': 'warn',
|
|
32
|
+
'@ngrx/no-reducer-in-key-names': 'warn',
|
|
33
|
+
'@ngrx/no-store-subscription': 'warn',
|
|
34
|
+
'@ngrx/no-typed-global-store': 'warn',
|
|
35
|
+
'@ngrx/on-function-explicit-return-type': 'warn',
|
|
36
|
+
'@ngrx/prefer-action-creator-in-dispatch': 'warn',
|
|
37
|
+
'@ngrx/prefer-action-creator': 'warn',
|
|
38
|
+
'@ngrx/prefer-inline-action-props': 'warn',
|
|
39
|
+
'@ngrx/prefer-one-generic-in-create-for-feature-selector': 'warn',
|
|
40
|
+
'@ngrx/prefer-selector-in-select': 'warn',
|
|
41
|
+
'@ngrx/prefix-selectors-with-select': 'warn',
|
|
42
|
+
'@ngrx/select-style': 'warn',
|
|
43
|
+
'@ngrx/use-consistent-global-store-name': 'warn'
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
//# sourceMappingURL=recommended-requiring-type-checking.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"recommended-requiring-type-checking.js","sourceRoot":"","sources":["../../../../../modules/eslint-plugin/src/configs/recommended-requiring-type-checking.ts"],"names":[],"mappings":";AAAA;;;GAGG;AAEH,iBAAS;IACP,MAAM,EAAE,2BAA2B;IACnC,aAAa,EAAE;QACb,WAAW,EAAE,IAAI;QACjB,UAAU,EAAE,QAAQ;QACpB,OAAO,EAAE,iBAAiB;KAC3B;IACD,OAAO,EAAE,CAAC,OAAO,CAAC;IAClB,KAAK,EAAE;QACL,oCAAoC,EAAE,MAAM;QAC5C,4BAA4B,EAAE,MAAM;QACpC,8BAA8B,EAAE,MAAM;QACtC,uCAAuC,EAAE,OAAO;QAChD,2BAA2B,EAAE,MAAM;QACnC,+BAA+B,EAAE,OAAO;QACxC,sCAAsC,EAAE,MAAM;QAC9C,wCAAwC,EAAE,MAAM;QAChD,iCAAiC,EAAE,MAAM;QACzC,iDAAiD,EAAE,MAAM;QACzD,uCAAuC,EAAE,MAAM;QAC/C,iCAAiC,EAAE,MAAM;QACzC,uDAAuD,EAAE,MAAM;QAC/D,0CAA0C,EAAE,MAAM;QAClD,+BAA+B,EAAE,MAAM;QACvC,2BAA2B,EAAE,MAAM;QACnC,iCAAiC,EAAE,MAAM;QACzC,+BAA+B,EAAE,MAAM;QACvC,6BAA6B,EAAE,MAAM;QACrC,6BAA6B,EAAE,MAAM;QACrC,wCAAwC,EAAE,MAAM;QAChD,yCAAyC,EAAE,MAAM;QACjD,6BAA6B,EAAE,MAAM;QACrC,kCAAkC,EAAE,MAAM;QAC1C,yDAAyD,EAAE,MAAM;QACjE,iCAAiC,EAAE,MAAM;QACzC,oCAAoC,EAAE,MAAM;QAC5C,oBAAoB,EAAE,MAAM;QAC5B,wCAAwC,EAAE,MAAM;KACjD;CACF,CAAC","sourcesContent":["/**\n * DO NOT EDIT\n * This file is generated\n */\n\nexport = {\n parser: '@typescript-eslint/parser',\n parserOptions: {\n ecmaVersion: 2020,\n sourceType: 'module',\n project: './tsconfig.json',\n },\n plugins: ['@ngrx'],\n rules: {\n '@ngrx/updater-explicit-return-type': 'warn',\n '@ngrx/avoid-cyclic-effects': 'warn',\n '@ngrx/no-dispatch-in-effects': 'warn',\n '@ngrx/no-effect-decorator-and-creator': 'error',\n '@ngrx/no-effect-decorator': 'warn',\n '@ngrx/no-effects-in-providers': 'error',\n '@ngrx/no-multiple-actions-in-effects': 'warn',\n '@ngrx/prefer-action-creator-in-of-type': 'warn',\n '@ngrx/prefer-concat-latest-from': 'warn',\n '@ngrx/prefer-effect-callback-in-block-statement': 'warn',\n '@ngrx/use-effects-lifecycle-interface': 'warn',\n '@ngrx/avoid-combining-selectors': 'warn',\n '@ngrx/avoid-dispatching-multiple-actions-sequentially': 'warn',\n '@ngrx/avoid-duplicate-actions-in-reducer': 'warn',\n '@ngrx/avoid-mapping-selectors': 'warn',\n '@ngrx/good-action-hygiene': 'warn',\n '@ngrx/no-multiple-global-stores': 'warn',\n '@ngrx/no-reducer-in-key-names': 'warn',\n '@ngrx/no-store-subscription': 'warn',\n '@ngrx/no-typed-global-store': 'warn',\n '@ngrx/on-function-explicit-return-type': 'warn',\n '@ngrx/prefer-action-creator-in-dispatch': 'warn',\n '@ngrx/prefer-action-creator': 'warn',\n '@ngrx/prefer-inline-action-props': 'warn',\n '@ngrx/prefer-one-generic-in-create-for-feature-selector': 'warn',\n '@ngrx/prefer-selector-in-select': 'warn',\n '@ngrx/prefix-selectors-with-select': 'warn',\n '@ngrx/select-style': 'warn',\n '@ngrx/use-consistent-global-store-name': 'warn',\n },\n};\n"]}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DO NOT EDIT
|
|
4
|
+
* This file is generated
|
|
5
|
+
*/
|
|
6
|
+
module.exports = {
|
|
7
|
+
parser: '@typescript-eslint/parser',
|
|
8
|
+
plugins: ['@ngrx'],
|
|
9
|
+
rules: {
|
|
10
|
+
'@ngrx/updater-explicit-return-type': 'warn',
|
|
11
|
+
'@ngrx/no-dispatch-in-effects': 'warn',
|
|
12
|
+
'@ngrx/no-effect-decorator-and-creator': 'error',
|
|
13
|
+
'@ngrx/no-effect-decorator': 'warn',
|
|
14
|
+
'@ngrx/no-effects-in-providers': 'error',
|
|
15
|
+
'@ngrx/prefer-action-creator-in-of-type': 'warn',
|
|
16
|
+
'@ngrx/prefer-concat-latest-from': 'warn',
|
|
17
|
+
'@ngrx/prefer-effect-callback-in-block-statement': 'warn',
|
|
18
|
+
'@ngrx/use-effects-lifecycle-interface': 'warn',
|
|
19
|
+
'@ngrx/avoid-combining-selectors': 'warn',
|
|
20
|
+
'@ngrx/avoid-dispatching-multiple-actions-sequentially': 'warn',
|
|
21
|
+
'@ngrx/avoid-duplicate-actions-in-reducer': 'warn',
|
|
22
|
+
'@ngrx/avoid-mapping-selectors': 'warn',
|
|
23
|
+
'@ngrx/good-action-hygiene': 'warn',
|
|
24
|
+
'@ngrx/no-multiple-global-stores': 'warn',
|
|
25
|
+
'@ngrx/no-reducer-in-key-names': 'warn',
|
|
26
|
+
'@ngrx/no-store-subscription': 'warn',
|
|
27
|
+
'@ngrx/no-typed-global-store': 'warn',
|
|
28
|
+
'@ngrx/on-function-explicit-return-type': 'warn',
|
|
29
|
+
'@ngrx/prefer-action-creator-in-dispatch': 'warn',
|
|
30
|
+
'@ngrx/prefer-action-creator': 'warn',
|
|
31
|
+
'@ngrx/prefer-inline-action-props': 'warn',
|
|
32
|
+
'@ngrx/prefer-one-generic-in-create-for-feature-selector': 'warn',
|
|
33
|
+
'@ngrx/prefer-selector-in-select': 'warn',
|
|
34
|
+
'@ngrx/prefix-selectors-with-select': 'warn',
|
|
35
|
+
'@ngrx/select-style': 'warn',
|
|
36
|
+
'@ngrx/use-consistent-global-store-name': 'warn'
|
|
37
|
+
}
|
|
38
|
+
};
|
|
39
|
+
//# sourceMappingURL=recommended.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"recommended.js","sourceRoot":"","sources":["../../../../../modules/eslint-plugin/src/configs/recommended.ts"],"names":[],"mappings":";AAAA;;;GAGG;AAEH,iBAAS;IACP,MAAM,EAAE,2BAA2B;IAEnC,OAAO,EAAE,CAAC,OAAO,CAAC;IAClB,KAAK,EAAE;QACL,oCAAoC,EAAE,MAAM;QAC5C,8BAA8B,EAAE,MAAM;QACtC,uCAAuC,EAAE,OAAO;QAChD,2BAA2B,EAAE,MAAM;QACnC,+BAA+B,EAAE,OAAO;QACxC,wCAAwC,EAAE,MAAM;QAChD,iCAAiC,EAAE,MAAM;QACzC,iDAAiD,EAAE,MAAM;QACzD,uCAAuC,EAAE,MAAM;QAC/C,iCAAiC,EAAE,MAAM;QACzC,uDAAuD,EAAE,MAAM;QAC/D,0CAA0C,EAAE,MAAM;QAClD,+BAA+B,EAAE,MAAM;QACvC,2BAA2B,EAAE,MAAM;QACnC,iCAAiC,EAAE,MAAM;QACzC,+BAA+B,EAAE,MAAM;QACvC,6BAA6B,EAAE,MAAM;QACrC,6BAA6B,EAAE,MAAM;QACrC,wCAAwC,EAAE,MAAM;QAChD,yCAAyC,EAAE,MAAM;QACjD,6BAA6B,EAAE,MAAM;QACrC,kCAAkC,EAAE,MAAM;QAC1C,yDAAyD,EAAE,MAAM;QACjE,iCAAiC,EAAE,MAAM;QACzC,oCAAoC,EAAE,MAAM;QAC5C,oBAAoB,EAAE,MAAM;QAC5B,wCAAwC,EAAE,MAAM;KACjD;CACF,CAAC","sourcesContent":["/**\n * DO NOT EDIT\n * This file is generated\n */\n\nexport = {\n parser: '@typescript-eslint/parser',\n\n plugins: ['@ngrx'],\n rules: {\n '@ngrx/updater-explicit-return-type': 'warn',\n '@ngrx/no-dispatch-in-effects': 'warn',\n '@ngrx/no-effect-decorator-and-creator': 'error',\n '@ngrx/no-effect-decorator': 'warn',\n '@ngrx/no-effects-in-providers': 'error',\n '@ngrx/prefer-action-creator-in-of-type': 'warn',\n '@ngrx/prefer-concat-latest-from': 'warn',\n '@ngrx/prefer-effect-callback-in-block-statement': 'warn',\n '@ngrx/use-effects-lifecycle-interface': 'warn',\n '@ngrx/avoid-combining-selectors': 'warn',\n '@ngrx/avoid-dispatching-multiple-actions-sequentially': 'warn',\n '@ngrx/avoid-duplicate-actions-in-reducer': 'warn',\n '@ngrx/avoid-mapping-selectors': 'warn',\n '@ngrx/good-action-hygiene': 'warn',\n '@ngrx/no-multiple-global-stores': 'warn',\n '@ngrx/no-reducer-in-key-names': 'warn',\n '@ngrx/no-store-subscription': 'warn',\n '@ngrx/no-typed-global-store': 'warn',\n '@ngrx/on-function-explicit-return-type': 'warn',\n '@ngrx/prefer-action-creator-in-dispatch': 'warn',\n '@ngrx/prefer-action-creator': 'warn',\n '@ngrx/prefer-inline-action-props': 'warn',\n '@ngrx/prefer-one-generic-in-create-for-feature-selector': 'warn',\n '@ngrx/prefer-selector-in-select': 'warn',\n '@ngrx/prefix-selectors-with-select': 'warn',\n '@ngrx/select-style': 'warn',\n '@ngrx/use-consistent-global-store-name': 'warn',\n },\n};\n"]}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DO NOT EDIT
|
|
4
|
+
* This file is generated
|
|
5
|
+
*/
|
|
6
|
+
module.exports = {
|
|
7
|
+
parser: '@typescript-eslint/parser',
|
|
8
|
+
plugins: ['@ngrx'],
|
|
9
|
+
rules: {
|
|
10
|
+
'@ngrx/avoid-combining-selectors': 'error',
|
|
11
|
+
'@ngrx/avoid-dispatching-multiple-actions-sequentially': 'error',
|
|
12
|
+
'@ngrx/avoid-duplicate-actions-in-reducer': 'error',
|
|
13
|
+
'@ngrx/avoid-mapping-selectors': 'error',
|
|
14
|
+
'@ngrx/good-action-hygiene': 'error',
|
|
15
|
+
'@ngrx/no-multiple-global-stores': 'error',
|
|
16
|
+
'@ngrx/no-reducer-in-key-names': 'error',
|
|
17
|
+
'@ngrx/no-store-subscription': 'error',
|
|
18
|
+
'@ngrx/no-typed-global-store': 'error',
|
|
19
|
+
'@ngrx/on-function-explicit-return-type': 'error',
|
|
20
|
+
'@ngrx/prefer-action-creator-in-dispatch': 'error',
|
|
21
|
+
'@ngrx/prefer-action-creator': 'error',
|
|
22
|
+
'@ngrx/prefer-inline-action-props': 'error',
|
|
23
|
+
'@ngrx/prefer-one-generic-in-create-for-feature-selector': 'error',
|
|
24
|
+
'@ngrx/prefer-selector-in-select': 'error',
|
|
25
|
+
'@ngrx/prefix-selectors-with-select': 'error',
|
|
26
|
+
'@ngrx/select-style': 'error',
|
|
27
|
+
'@ngrx/use-consistent-global-store-name': 'error'
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
//# sourceMappingURL=store-strict.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"store-strict.js","sourceRoot":"","sources":["../../../../../modules/eslint-plugin/src/configs/store-strict.ts"],"names":[],"mappings":";AAAA;;;GAGG;AAEH,iBAAS;IACP,MAAM,EAAE,2BAA2B;IAEnC,OAAO,EAAE,CAAC,OAAO,CAAC;IAClB,KAAK,EAAE;QACL,iCAAiC,EAAE,OAAO;QAC1C,uDAAuD,EAAE,OAAO;QAChE,0CAA0C,EAAE,OAAO;QACnD,+BAA+B,EAAE,OAAO;QACxC,2BAA2B,EAAE,OAAO;QACpC,iCAAiC,EAAE,OAAO;QAC1C,+BAA+B,EAAE,OAAO;QACxC,6BAA6B,EAAE,OAAO;QACtC,6BAA6B,EAAE,OAAO;QACtC,wCAAwC,EAAE,OAAO;QACjD,yCAAyC,EAAE,OAAO;QAClD,6BAA6B,EAAE,OAAO;QACtC,kCAAkC,EAAE,OAAO;QAC3C,yDAAyD,EAAE,OAAO;QAClE,iCAAiC,EAAE,OAAO;QAC1C,oCAAoC,EAAE,OAAO;QAC7C,oBAAoB,EAAE,OAAO;QAC7B,wCAAwC,EAAE,OAAO;KAClD;CACF,CAAC","sourcesContent":["/**\n * DO NOT EDIT\n * This file is generated\n */\n\nexport = {\n parser: '@typescript-eslint/parser',\n\n plugins: ['@ngrx'],\n rules: {\n '@ngrx/avoid-combining-selectors': 'error',\n '@ngrx/avoid-dispatching-multiple-actions-sequentially': 'error',\n '@ngrx/avoid-duplicate-actions-in-reducer': 'error',\n '@ngrx/avoid-mapping-selectors': 'error',\n '@ngrx/good-action-hygiene': 'error',\n '@ngrx/no-multiple-global-stores': 'error',\n '@ngrx/no-reducer-in-key-names': 'error',\n '@ngrx/no-store-subscription': 'error',\n '@ngrx/no-typed-global-store': 'error',\n '@ngrx/on-function-explicit-return-type': 'error',\n '@ngrx/prefer-action-creator-in-dispatch': 'error',\n '@ngrx/prefer-action-creator': 'error',\n '@ngrx/prefer-inline-action-props': 'error',\n '@ngrx/prefer-one-generic-in-create-for-feature-selector': 'error',\n '@ngrx/prefer-selector-in-select': 'error',\n '@ngrx/prefix-selectors-with-select': 'error',\n '@ngrx/select-style': 'error',\n '@ngrx/use-consistent-global-store-name': 'error',\n },\n};\n"]}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DO NOT EDIT
|
|
4
|
+
* This file is generated
|
|
5
|
+
*/
|
|
6
|
+
module.exports = {
|
|
7
|
+
parser: '@typescript-eslint/parser',
|
|
8
|
+
plugins: ['@ngrx'],
|
|
9
|
+
rules: {
|
|
10
|
+
'@ngrx/avoid-combining-selectors': 'warn',
|
|
11
|
+
'@ngrx/avoid-dispatching-multiple-actions-sequentially': 'warn',
|
|
12
|
+
'@ngrx/avoid-duplicate-actions-in-reducer': 'warn',
|
|
13
|
+
'@ngrx/avoid-mapping-selectors': 'warn',
|
|
14
|
+
'@ngrx/good-action-hygiene': 'warn',
|
|
15
|
+
'@ngrx/no-multiple-global-stores': 'warn',
|
|
16
|
+
'@ngrx/no-reducer-in-key-names': 'warn',
|
|
17
|
+
'@ngrx/no-store-subscription': 'warn',
|
|
18
|
+
'@ngrx/no-typed-global-store': 'warn',
|
|
19
|
+
'@ngrx/on-function-explicit-return-type': 'warn',
|
|
20
|
+
'@ngrx/prefer-action-creator-in-dispatch': 'warn',
|
|
21
|
+
'@ngrx/prefer-action-creator': 'warn',
|
|
22
|
+
'@ngrx/prefer-inline-action-props': 'warn',
|
|
23
|
+
'@ngrx/prefer-one-generic-in-create-for-feature-selector': 'warn',
|
|
24
|
+
'@ngrx/prefer-selector-in-select': 'warn',
|
|
25
|
+
'@ngrx/prefix-selectors-with-select': 'warn',
|
|
26
|
+
'@ngrx/select-style': 'warn',
|
|
27
|
+
'@ngrx/use-consistent-global-store-name': 'warn'
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
//# sourceMappingURL=store.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"store.js","sourceRoot":"","sources":["../../../../../modules/eslint-plugin/src/configs/store.ts"],"names":[],"mappings":";AAAA;;;GAGG;AAEH,iBAAS;IACP,MAAM,EAAE,2BAA2B;IAEnC,OAAO,EAAE,CAAC,OAAO,CAAC;IAClB,KAAK,EAAE;QACL,iCAAiC,EAAE,MAAM;QACzC,uDAAuD,EAAE,MAAM;QAC/D,0CAA0C,EAAE,MAAM;QAClD,+BAA+B,EAAE,MAAM;QACvC,2BAA2B,EAAE,MAAM;QACnC,iCAAiC,EAAE,MAAM;QACzC,+BAA+B,EAAE,MAAM;QACvC,6BAA6B,EAAE,MAAM;QACrC,6BAA6B,EAAE,MAAM;QACrC,wCAAwC,EAAE,MAAM;QAChD,yCAAyC,EAAE,MAAM;QACjD,6BAA6B,EAAE,MAAM;QACrC,kCAAkC,EAAE,MAAM;QAC1C,yDAAyD,EAAE,MAAM;QACjE,iCAAiC,EAAE,MAAM;QACzC,oCAAoC,EAAE,MAAM;QAC5C,oBAAoB,EAAE,MAAM;QAC5B,wCAAwC,EAAE,MAAM;KACjD;CACF,CAAC","sourcesContent":["/**\n * DO NOT EDIT\n * This file is generated\n */\n\nexport = {\n parser: '@typescript-eslint/parser',\n\n plugins: ['@ngrx'],\n rules: {\n '@ngrx/avoid-combining-selectors': 'warn',\n '@ngrx/avoid-dispatching-multiple-actions-sequentially': 'warn',\n '@ngrx/avoid-duplicate-actions-in-reducer': 'warn',\n '@ngrx/avoid-mapping-selectors': 'warn',\n '@ngrx/good-action-hygiene': 'warn',\n '@ngrx/no-multiple-global-stores': 'warn',\n '@ngrx/no-reducer-in-key-names': 'warn',\n '@ngrx/no-store-subscription': 'warn',\n '@ngrx/no-typed-global-store': 'warn',\n '@ngrx/on-function-explicit-return-type': 'warn',\n '@ngrx/prefer-action-creator-in-dispatch': 'warn',\n '@ngrx/prefer-action-creator': 'warn',\n '@ngrx/prefer-inline-action-props': 'warn',\n '@ngrx/prefer-one-generic-in-create-for-feature-selector': 'warn',\n '@ngrx/prefer-selector-in-select': 'warn',\n '@ngrx/prefix-selectors-with-select': 'warn',\n '@ngrx/select-style': 'warn',\n '@ngrx/use-consistent-global-store-name': 'warn',\n },\n};\n"]}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DO NOT EDIT
|
|
4
|
+
* This file is generated
|
|
5
|
+
*/
|
|
6
|
+
module.exports = {
|
|
7
|
+
parser: '@typescript-eslint/parser',
|
|
8
|
+
parserOptions: {
|
|
9
|
+
ecmaVersion: 2020,
|
|
10
|
+
sourceType: 'module',
|
|
11
|
+
project: './tsconfig.json'
|
|
12
|
+
},
|
|
13
|
+
plugins: ['@ngrx'],
|
|
14
|
+
rules: {
|
|
15
|
+
'@ngrx/updater-explicit-return-type': 'error',
|
|
16
|
+
'@ngrx/avoid-cyclic-effects': 'error',
|
|
17
|
+
'@ngrx/no-dispatch-in-effects': 'error',
|
|
18
|
+
'@ngrx/no-effect-decorator-and-creator': 'error',
|
|
19
|
+
'@ngrx/no-effect-decorator': 'error',
|
|
20
|
+
'@ngrx/no-effects-in-providers': 'error',
|
|
21
|
+
'@ngrx/no-multiple-actions-in-effects': 'error',
|
|
22
|
+
'@ngrx/prefer-action-creator-in-of-type': 'error',
|
|
23
|
+
'@ngrx/prefer-concat-latest-from': 'error',
|
|
24
|
+
'@ngrx/prefer-effect-callback-in-block-statement': 'error',
|
|
25
|
+
'@ngrx/use-effects-lifecycle-interface': 'error',
|
|
26
|
+
'@ngrx/avoid-combining-selectors': 'error',
|
|
27
|
+
'@ngrx/avoid-dispatching-multiple-actions-sequentially': 'error',
|
|
28
|
+
'@ngrx/avoid-duplicate-actions-in-reducer': 'error',
|
|
29
|
+
'@ngrx/avoid-mapping-selectors': 'error',
|
|
30
|
+
'@ngrx/good-action-hygiene': 'error',
|
|
31
|
+
'@ngrx/no-multiple-global-stores': 'error',
|
|
32
|
+
'@ngrx/no-reducer-in-key-names': 'error',
|
|
33
|
+
'@ngrx/no-store-subscription': 'error',
|
|
34
|
+
'@ngrx/no-typed-global-store': 'error',
|
|
35
|
+
'@ngrx/on-function-explicit-return-type': 'error',
|
|
36
|
+
'@ngrx/prefer-action-creator-in-dispatch': 'error',
|
|
37
|
+
'@ngrx/prefer-action-creator': 'error',
|
|
38
|
+
'@ngrx/prefer-inline-action-props': 'error',
|
|
39
|
+
'@ngrx/prefer-one-generic-in-create-for-feature-selector': 'error',
|
|
40
|
+
'@ngrx/prefer-selector-in-select': 'error',
|
|
41
|
+
'@ngrx/prefix-selectors-with-select': 'error',
|
|
42
|
+
'@ngrx/select-style': 'error',
|
|
43
|
+
'@ngrx/use-consistent-global-store-name': 'error'
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
//# sourceMappingURL=strict-requiring-type-checking.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"strict-requiring-type-checking.js","sourceRoot":"","sources":["../../../../../modules/eslint-plugin/src/configs/strict-requiring-type-checking.ts"],"names":[],"mappings":";AAAA;;;GAGG;AAEH,iBAAS;IACP,MAAM,EAAE,2BAA2B;IACnC,aAAa,EAAE;QACb,WAAW,EAAE,IAAI;QACjB,UAAU,EAAE,QAAQ;QACpB,OAAO,EAAE,iBAAiB;KAC3B;IACD,OAAO,EAAE,CAAC,OAAO,CAAC;IAClB,KAAK,EAAE;QACL,oCAAoC,EAAE,OAAO;QAC7C,4BAA4B,EAAE,OAAO;QACrC,8BAA8B,EAAE,OAAO;QACvC,uCAAuC,EAAE,OAAO;QAChD,2BAA2B,EAAE,OAAO;QACpC,+BAA+B,EAAE,OAAO;QACxC,sCAAsC,EAAE,OAAO;QAC/C,wCAAwC,EAAE,OAAO;QACjD,iCAAiC,EAAE,OAAO;QAC1C,iDAAiD,EAAE,OAAO;QAC1D,uCAAuC,EAAE,OAAO;QAChD,iCAAiC,EAAE,OAAO;QAC1C,uDAAuD,EAAE,OAAO;QAChE,0CAA0C,EAAE,OAAO;QACnD,+BAA+B,EAAE,OAAO;QACxC,2BAA2B,EAAE,OAAO;QACpC,iCAAiC,EAAE,OAAO;QAC1C,+BAA+B,EAAE,OAAO;QACxC,6BAA6B,EAAE,OAAO;QACtC,6BAA6B,EAAE,OAAO;QACtC,wCAAwC,EAAE,OAAO;QACjD,yCAAyC,EAAE,OAAO;QAClD,6BAA6B,EAAE,OAAO;QACtC,kCAAkC,EAAE,OAAO;QAC3C,yDAAyD,EAAE,OAAO;QAClE,iCAAiC,EAAE,OAAO;QAC1C,oCAAoC,EAAE,OAAO;QAC7C,oBAAoB,EAAE,OAAO;QAC7B,wCAAwC,EAAE,OAAO;KAClD;CACF,CAAC","sourcesContent":["/**\n * DO NOT EDIT\n * This file is generated\n */\n\nexport = {\n parser: '@typescript-eslint/parser',\n parserOptions: {\n ecmaVersion: 2020,\n sourceType: 'module',\n project: './tsconfig.json',\n },\n plugins: ['@ngrx'],\n rules: {\n '@ngrx/updater-explicit-return-type': 'error',\n '@ngrx/avoid-cyclic-effects': 'error',\n '@ngrx/no-dispatch-in-effects': 'error',\n '@ngrx/no-effect-decorator-and-creator': 'error',\n '@ngrx/no-effect-decorator': 'error',\n '@ngrx/no-effects-in-providers': 'error',\n '@ngrx/no-multiple-actions-in-effects': 'error',\n '@ngrx/prefer-action-creator-in-of-type': 'error',\n '@ngrx/prefer-concat-latest-from': 'error',\n '@ngrx/prefer-effect-callback-in-block-statement': 'error',\n '@ngrx/use-effects-lifecycle-interface': 'error',\n '@ngrx/avoid-combining-selectors': 'error',\n '@ngrx/avoid-dispatching-multiple-actions-sequentially': 'error',\n '@ngrx/avoid-duplicate-actions-in-reducer': 'error',\n '@ngrx/avoid-mapping-selectors': 'error',\n '@ngrx/good-action-hygiene': 'error',\n '@ngrx/no-multiple-global-stores': 'error',\n '@ngrx/no-reducer-in-key-names': 'error',\n '@ngrx/no-store-subscription': 'error',\n '@ngrx/no-typed-global-store': 'error',\n '@ngrx/on-function-explicit-return-type': 'error',\n '@ngrx/prefer-action-creator-in-dispatch': 'error',\n '@ngrx/prefer-action-creator': 'error',\n '@ngrx/prefer-inline-action-props': 'error',\n '@ngrx/prefer-one-generic-in-create-for-feature-selector': 'error',\n '@ngrx/prefer-selector-in-select': 'error',\n '@ngrx/prefix-selectors-with-select': 'error',\n '@ngrx/select-style': 'error',\n '@ngrx/use-consistent-global-store-name': 'error',\n },\n};\n"]}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* DO NOT EDIT
|
|
4
|
+
* This file is generated
|
|
5
|
+
*/
|
|
6
|
+
module.exports = {
|
|
7
|
+
parser: '@typescript-eslint/parser',
|
|
8
|
+
plugins: ['@ngrx'],
|
|
9
|
+
rules: {
|
|
10
|
+
'@ngrx/updater-explicit-return-type': 'error',
|
|
11
|
+
'@ngrx/no-dispatch-in-effects': 'error',
|
|
12
|
+
'@ngrx/no-effect-decorator-and-creator': 'error',
|
|
13
|
+
'@ngrx/no-effect-decorator': 'error',
|
|
14
|
+
'@ngrx/no-effects-in-providers': 'error',
|
|
15
|
+
'@ngrx/prefer-action-creator-in-of-type': 'error',
|
|
16
|
+
'@ngrx/prefer-concat-latest-from': 'error',
|
|
17
|
+
'@ngrx/prefer-effect-callback-in-block-statement': 'error',
|
|
18
|
+
'@ngrx/use-effects-lifecycle-interface': 'error',
|
|
19
|
+
'@ngrx/avoid-combining-selectors': 'error',
|
|
20
|
+
'@ngrx/avoid-dispatching-multiple-actions-sequentially': 'error',
|
|
21
|
+
'@ngrx/avoid-duplicate-actions-in-reducer': 'error',
|
|
22
|
+
'@ngrx/avoid-mapping-selectors': 'error',
|
|
23
|
+
'@ngrx/good-action-hygiene': 'error',
|
|
24
|
+
'@ngrx/no-multiple-global-stores': 'error',
|
|
25
|
+
'@ngrx/no-reducer-in-key-names': 'error',
|
|
26
|
+
'@ngrx/no-store-subscription': 'error',
|
|
27
|
+
'@ngrx/no-typed-global-store': 'error',
|
|
28
|
+
'@ngrx/on-function-explicit-return-type': 'error',
|
|
29
|
+
'@ngrx/prefer-action-creator-in-dispatch': 'error',
|
|
30
|
+
'@ngrx/prefer-action-creator': 'error',
|
|
31
|
+
'@ngrx/prefer-inline-action-props': 'error',
|
|
32
|
+
'@ngrx/prefer-one-generic-in-create-for-feature-selector': 'error',
|
|
33
|
+
'@ngrx/prefer-selector-in-select': 'error',
|
|
34
|
+
'@ngrx/prefix-selectors-with-select': 'error',
|
|
35
|
+
'@ngrx/select-style': 'error',
|
|
36
|
+
'@ngrx/use-consistent-global-store-name': 'error'
|
|
37
|
+
}
|
|
38
|
+
};
|
|
39
|
+
//# sourceMappingURL=strict.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"strict.js","sourceRoot":"","sources":["../../../../../modules/eslint-plugin/src/configs/strict.ts"],"names":[],"mappings":";AAAA;;;GAGG;AAEH,iBAAS;IACP,MAAM,EAAE,2BAA2B;IAEnC,OAAO,EAAE,CAAC,OAAO,CAAC;IAClB,KAAK,EAAE;QACL,oCAAoC,EAAE,OAAO;QAC7C,8BAA8B,EAAE,OAAO;QACvC,uCAAuC,EAAE,OAAO;QAChD,2BAA2B,EAAE,OAAO;QACpC,+BAA+B,EAAE,OAAO;QACxC,wCAAwC,EAAE,OAAO;QACjD,iCAAiC,EAAE,OAAO;QAC1C,iDAAiD,EAAE,OAAO;QAC1D,uCAAuC,EAAE,OAAO;QAChD,iCAAiC,EAAE,OAAO;QAC1C,uDAAuD,EAAE,OAAO;QAChE,0CAA0C,EAAE,OAAO;QACnD,+BAA+B,EAAE,OAAO;QACxC,2BAA2B,EAAE,OAAO;QACpC,iCAAiC,EAAE,OAAO;QAC1C,+BAA+B,EAAE,OAAO;QACxC,6BAA6B,EAAE,OAAO;QACtC,6BAA6B,EAAE,OAAO;QACtC,wCAAwC,EAAE,OAAO;QACjD,yCAAyC,EAAE,OAAO;QAClD,6BAA6B,EAAE,OAAO;QACtC,kCAAkC,EAAE,OAAO;QAC3C,yDAAyD,EAAE,OAAO;QAClE,iCAAiC,EAAE,OAAO;QAC1C,oCAAoC,EAAE,OAAO;QAC7C,oBAAoB,EAAE,OAAO;QAC7B,wCAAwC,EAAE,OAAO;KAClD;CACF,CAAC","sourcesContent":["/**\n * DO NOT EDIT\n * This file is generated\n */\n\nexport = {\n parser: '@typescript-eslint/parser',\n\n plugins: ['@ngrx'],\n rules: {\n '@ngrx/updater-explicit-return-type': 'error',\n '@ngrx/no-dispatch-in-effects': 'error',\n '@ngrx/no-effect-decorator-and-creator': 'error',\n '@ngrx/no-effect-decorator': 'error',\n '@ngrx/no-effects-in-providers': 'error',\n '@ngrx/prefer-action-creator-in-of-type': 'error',\n '@ngrx/prefer-concat-latest-from': 'error',\n '@ngrx/prefer-effect-callback-in-block-statement': 'error',\n '@ngrx/use-effects-lifecycle-interface': 'error',\n '@ngrx/avoid-combining-selectors': 'error',\n '@ngrx/avoid-dispatching-multiple-actions-sequentially': 'error',\n '@ngrx/avoid-duplicate-actions-in-reducer': 'error',\n '@ngrx/avoid-mapping-selectors': 'error',\n '@ngrx/good-action-hygiene': 'error',\n '@ngrx/no-multiple-global-stores': 'error',\n '@ngrx/no-reducer-in-key-names': 'error',\n '@ngrx/no-store-subscription': 'error',\n '@ngrx/no-typed-global-store': 'error',\n '@ngrx/on-function-explicit-return-type': 'error',\n '@ngrx/prefer-action-creator-in-dispatch': 'error',\n '@ngrx/prefer-action-creator': 'error',\n '@ngrx/prefer-inline-action-props': 'error',\n '@ngrx/prefer-one-generic-in-create-for-feature-selector': 'error',\n '@ngrx/prefer-selector-in-select': 'error',\n '@ngrx/prefix-selectors-with-select': 'error',\n '@ngrx/select-style': 'error',\n '@ngrx/use-consistent-global-store-name': 'error',\n },\n};\n"]}
|
package/src/index.js
ADDED
package/src/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../modules/eslint-plugin/src/index.ts"],"names":[],"mappings":";AAAA,qCAAoC;AACpC,iCAAgC;AAEhC,iBAAS;IACP,KAAK,eAAA;IACL,OAAO,mBAAA;CACR,CAAC","sourcesContent":["import { configs } from './configs';\nimport { rules } from './rules';\n\nexport = {\n rules,\n configs,\n};\n"]}
|