@chris.araneo/eslint-config 0.0.134 → 0.0.136
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/README.md +1 -1
- package/dist/src/angular/angular-eslint-template.js +48 -51
- package/dist/src/angular/angular-eslint-template.js.map +1 -1
- package/dist/src/angular/angular-eslint.js +17 -7
- package/dist/src/angular/angular-eslint.js.map +1 -1
- package/dist/src/angular/index.js +0 -2
- package/dist/src/angular/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/src/angular/ng-perfectionist.d.ts +0 -6
- package/dist/src/angular/ng-perfectionist.js +0 -20
- package/dist/src/angular/ng-perfectionist.js.map +0 -1
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<p align="center">
|
|
4
4
|
<img src="https://avatars.githubusercontent.com/u/6019716" alt="Official @eslint GitHub user avatar" width="256px" height="256px"/>
|
|
5
5
|
<br>
|
|
6
|
-
<a href="https://github.com/ChrisAraneo/eslint-config/blob/master/package.json"><img src="https://img.shields.io/badge/version-v0.0.
|
|
6
|
+
<a href="https://github.com/ChrisAraneo/eslint-config/blob/master/package.json"><img src="https://img.shields.io/badge/version-v0.0.135-blue" alt="version"></a>
|
|
7
7
|
<a href="https://github.com/ChrisAraneo/eslint-config/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="@chris.araneo/eslint-config is released under the MIT license."></a>
|
|
8
8
|
<a href="https://github.com/ChrisAraneo/eslint-config/actions/workflows/ci.yml"><img alt="GitHub CI Status" src="https://img.shields.io/github/actions/workflow/status/ChrisAraneo/eslint-config/ci.yml?label=CI&logo=GitHub"></a>
|
|
9
9
|
<br>
|
|
@@ -3,56 +3,53 @@ import { match } from 'ts-pattern';
|
|
|
3
3
|
export const getAngularTemplatesConfigs = ({ templates, } = {}) => match(templates?.length ?? 0)
|
|
4
4
|
.with(0, () => [])
|
|
5
5
|
.otherwise(() => [
|
|
6
|
-
...angular.configs.templateAll.map((config) => {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
'
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
},
|
|
55
|
-
};
|
|
56
|
-
}),
|
|
6
|
+
...angular.configs.templateAll.map((config) => ({
|
|
7
|
+
...config,
|
|
8
|
+
files: templates,
|
|
9
|
+
rules: {
|
|
10
|
+
...config.rules,
|
|
11
|
+
'@angular-eslint/template/alt-text': 'error',
|
|
12
|
+
'@angular-eslint/template/attributes-order': 'error',
|
|
13
|
+
'@angular-eslint/template/banana-in-box': 'error',
|
|
14
|
+
'@angular-eslint/template/button-has-type': 'error',
|
|
15
|
+
'@angular-eslint/template/click-events-have-key-events': 'error',
|
|
16
|
+
'@angular-eslint/template/conditional-complexity': 'error',
|
|
17
|
+
'@angular-eslint/template/cyclomatic-complexity': [
|
|
18
|
+
'error',
|
|
19
|
+
{ maxComplexity: 6 },
|
|
20
|
+
],
|
|
21
|
+
'@angular-eslint/template/elements-content': 'error',
|
|
22
|
+
'@angular-eslint/template/eqeqeq': 'error',
|
|
23
|
+
'@angular-eslint/template/i18n': 'off',
|
|
24
|
+
'@angular-eslint/template/interactive-supports-focus': 'error',
|
|
25
|
+
'@angular-eslint/template/label-has-associated-control': 'error',
|
|
26
|
+
'@angular-eslint/template/mouse-events-have-key-events': 'error',
|
|
27
|
+
'@angular-eslint/template/no-any': 'error',
|
|
28
|
+
'@angular-eslint/template/no-autofocus': 'error',
|
|
29
|
+
'@angular-eslint/template/no-call-expression': 'off',
|
|
30
|
+
'@angular-eslint/template/no-distracting-elements': 'error',
|
|
31
|
+
'@angular-eslint/template/no-duplicate-attributes': 'error',
|
|
32
|
+
'@angular-eslint/template/no-empty-control-flow': 'error',
|
|
33
|
+
'@angular-eslint/template/no-inline-styles': 'error',
|
|
34
|
+
'@angular-eslint/template/no-interpolation-in-attributes': 'error',
|
|
35
|
+
'@angular-eslint/template/no-negated-async': 'error',
|
|
36
|
+
'@angular-eslint/template/no-nested-tags': 'error',
|
|
37
|
+
'@angular-eslint/template/no-positive-tabindex': 'error',
|
|
38
|
+
'@angular-eslint/template/prefer-at-else': 'error',
|
|
39
|
+
'@angular-eslint/template/prefer-at-empty': 'error',
|
|
40
|
+
'@angular-eslint/template/prefer-built-in-pipes': 'error',
|
|
41
|
+
'@angular-eslint/template/prefer-class-binding': 'error',
|
|
42
|
+
'@angular-eslint/template/prefer-contextual-for-variables': 'error',
|
|
43
|
+
'@angular-eslint/template/prefer-control-flow': 'error',
|
|
44
|
+
'@angular-eslint/template/prefer-ngsrc': 'error',
|
|
45
|
+
'@angular-eslint/template/prefer-self-closing-tags': 'error',
|
|
46
|
+
'@angular-eslint/template/prefer-static-string-properties': 'error',
|
|
47
|
+
'@angular-eslint/template/prefer-template-literal': 'error',
|
|
48
|
+
'@angular-eslint/template/role-has-required-aria': 'error',
|
|
49
|
+
'@angular-eslint/template/table-scope': 'error',
|
|
50
|
+
'@angular-eslint/template/use-track-by-function': 'error',
|
|
51
|
+
'@angular-eslint/template/valid-aria': 'error',
|
|
52
|
+
},
|
|
53
|
+
})),
|
|
57
54
|
]);
|
|
58
55
|
//# sourceMappingURL=angular-eslint-template.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"angular-eslint-template.js","sourceRoot":"/","sources":["src/angular/angular-eslint-template.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,gBAAgB,CAAC;AAErC,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAMnC,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,EACzC,SAAS,MACA,EAAE,EAAmB,EAAE,CAChC,KAAK,CAAC,SAAS,EAAE,MAAM,IAAI,CAAC,CAAC;KAC1B,IAAI,CAAC,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;KACjB,SAAS,CAAC,GAAG,EAAE,CAAC;IACf,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,GAAG,CAChC,CAAC,MAAM,EAAE,EAAE
|
|
1
|
+
{"version":3,"file":"angular-eslint-template.js","sourceRoot":"/","sources":["src/angular/angular-eslint-template.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,gBAAgB,CAAC;AAErC,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAMnC,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,EACzC,SAAS,MACA,EAAE,EAAmB,EAAE,CAChC,KAAK,CAAC,SAAS,EAAE,MAAM,IAAI,CAAC,CAAC;KAC1B,IAAI,CAAC,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;KACjB,SAAS,CAAC,GAAG,EAAE,CAAC;IACf,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,GAAG,CAChC,CAAC,MAAM,EAAE,EAAE,CACT,CAAC;QACC,GAAG,MAAM;QACT,KAAK,EAAE,SAAS;QAChB,KAAK,EAAE;YACL,GAAG,MAAM,CAAC,KAAK;YACf,mCAAmC,EAAE,OAAO;YAC5C,2CAA2C,EAAE,OAAO;YACpD,wCAAwC,EAAE,OAAO;YACjD,0CAA0C,EAAE,OAAO;YACnD,uDAAuD,EAAE,OAAO;YAChE,iDAAiD,EAAE,OAAO;YAC1D,gDAAgD,EAAE;gBAChD,OAAO;gBACP,EAAE,aAAa,EAAE,CAAC,EAAE;aACrB;YACD,2CAA2C,EAAE,OAAO;YACpD,iCAAiC,EAAE,OAAO;YAC1C,+BAA+B,EAAE,KAAK;YACtC,qDAAqD,EAAE,OAAO;YAC9D,uDAAuD,EAAE,OAAO;YAChE,uDAAuD,EAAE,OAAO;YAChE,iCAAiC,EAAE,OAAO;YAC1C,uCAAuC,EAAE,OAAO;YAChD,6CAA6C,EAAE,KAAK;YACpD,kDAAkD,EAAE,OAAO;YAC3D,kDAAkD,EAAE,OAAO;YAC3D,gDAAgD,EAAE,OAAO;YACzD,2CAA2C,EAAE,OAAO;YACpD,yDAAyD,EACvD,OAAO;YACT,2CAA2C,EAAE,OAAO;YACpD,yCAAyC,EAAE,OAAO;YAClD,+CAA+C,EAAE,OAAO;YACxD,yCAAyC,EAAE,OAAO;YAClD,0CAA0C,EAAE,OAAO;YACnD,gDAAgD,EAAE,OAAO;YACzD,+CAA+C,EAAE,OAAO;YACxD,0DAA0D,EACxD,OAAO;YACT,8CAA8C,EAAE,OAAO;YACvD,uCAAuC,EAAE,OAAO;YAChD,mDAAmD,EAAE,OAAO;YAC5D,0DAA0D,EACxD,OAAO;YACT,kDAAkD,EAAE,OAAO;YAC3D,iDAAiD,EAAE,OAAO;YAC1D,sCAAsC,EAAE,OAAO;YAC/C,gDAAgD,EAAE,OAAO;YACzD,qCAAqC,EAAE,OAAO;SAC/C;KACF,CAAkB,CACtB;CACF,CAAC,CAAC"}
|
|
@@ -1,14 +1,19 @@
|
|
|
1
|
+
import ngPerfectionist from '@chris.araneo/eslint-plugin-ng-perfectionist';
|
|
1
2
|
import angular from 'angular-eslint';
|
|
2
3
|
import { match } from 'ts-pattern';
|
|
3
4
|
export const getAngularSourcesConfigs = ({ prefix, sources, } = {}) => match(sources?.length ?? 0)
|
|
4
5
|
.with(0, () => [])
|
|
5
|
-
.otherwise(() =>
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
...(index === 0 ? config : rest),
|
|
6
|
+
.otherwise(() => [
|
|
7
|
+
...angular.configs.tsAll.map((config) => ({
|
|
8
|
+
...config,
|
|
9
9
|
files: sources,
|
|
10
|
+
})),
|
|
11
|
+
{
|
|
12
|
+
files: sources,
|
|
13
|
+
plugins: {
|
|
14
|
+
'@chris.araneo/ng-perfectionist': ngPerfectionist,
|
|
15
|
+
},
|
|
10
16
|
rules: {
|
|
11
|
-
...config.rules,
|
|
12
17
|
'@angular-eslint/component-selector': [
|
|
13
18
|
'error',
|
|
14
19
|
{
|
|
@@ -29,7 +34,12 @@ export const getAngularSourcesConfigs = ({ prefix, sources, } = {}) => match(sou
|
|
|
29
34
|
'@angular-eslint/prefer-on-push-component-change-detection': 'off',
|
|
30
35
|
'@angular-eslint/prefer-output-emitter-ref': 'off',
|
|
31
36
|
'@angular-eslint/prefer-signals': 'off',
|
|
37
|
+
'@chris.araneo/ng-perfectionist/sort-component-imports': 'error',
|
|
38
|
+
'@chris.araneo/ng-perfectionist/sort-component-style-urls': 'error',
|
|
39
|
+
'@chris.araneo/ng-perfectionist/sort-ng-module-declarations': 'error',
|
|
40
|
+
'@chris.araneo/ng-perfectionist/sort-ng-module-exports': 'error',
|
|
41
|
+
'@chris.araneo/ng-perfectionist/sort-ng-module-imports': 'error',
|
|
32
42
|
},
|
|
33
|
-
}
|
|
34
|
-
|
|
43
|
+
},
|
|
44
|
+
]);
|
|
35
45
|
//# sourceMappingURL=angular-eslint.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"angular-eslint.js","sourceRoot":"/","sources":["src/angular/angular-eslint.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,gBAAgB,CAAC;AAErC,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAOnC,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,EACvC,MAAM,EACN,OAAO,MACE,EAAE,EAAmB,EAAE,CAChC,KAAK,CAAC,OAAO,EAAE,MAAM,IAAI,CAAC,CAAC;KACxB,IAAI,CAAC,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;KACjB,SAAS,CAAC,GAAG,EAAE,
|
|
1
|
+
{"version":3,"file":"angular-eslint.js","sourceRoot":"/","sources":["src/angular/angular-eslint.ts"],"names":[],"mappings":"AAAA,OAAO,eAAe,MAAM,8CAA8C,CAAC;AAC3E,OAAO,OAAO,MAAM,gBAAgB,CAAC;AAErC,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAOnC,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,EACvC,MAAM,EACN,OAAO,MACE,EAAE,EAAmB,EAAE,CAChC,KAAK,CAAC,OAAO,EAAE,MAAM,IAAI,CAAC,CAAC;KACxB,IAAI,CAAC,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;KACjB,SAAS,CAAC,GAAG,EAAE,CAAC;IACf,GAAG,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,CAC1B,CAAC,MAAM,EAAE,EAAE,CACT,CAAC;QACC,GAAG,MAAM;QACT,KAAK,EAAE,OAAO;KACf,CAAkB,CACtB;IACD;QACE,KAAK,EAAE,OAAO;QACd,OAAO,EAAE;YACP,gCAAgC,EAAE,eAAe;SAClD;QACD,KAAK,EAAE;YACL,oCAAoC,EAAE;gBACpC,OAAO;gBACP;oBACE,MAAM,EAAE,MAAM,IAAI,KAAK;oBACvB,KAAK,EAAE,YAAY;oBACnB,IAAI,EAAE,SAAS;iBAChB;aACF;YACD,oCAAoC,EAAE;gBACpC,OAAO;gBACP;oBACE,MAAM,EAAE,MAAM,IAAI,KAAK;oBACvB,KAAK,EAAE,WAAW;oBAClB,IAAI,EAAE,WAAW;iBAClB;aACF;YACD,gCAAgC,EAAE,KAAK;YACvC,2DAA2D,EAAE,KAAK;YAClE,2CAA2C,EAAE,KAAK;YAClD,gCAAgC,EAAE,KAAK;YACvC,uDAAuD,EAAE,OAAO;YAChE,0DAA0D,EAAE,OAAO;YACnE,4DAA4D,EAAE,OAAO;YACrE,uDAAuD,EAAE,OAAO;YAChE,uDAAuD,EAAE,OAAO;SACjE;KACF;CACF,CAAC,CAAC"}
|
|
@@ -4,7 +4,6 @@ import { createTypeScriptConfigBlock, createTypeScriptTestsConfigBlock, } from '
|
|
|
4
4
|
import { setTsconfigRootDir } from '../utils/set-tsconfig-root-dir.js';
|
|
5
5
|
import { getAngularSourcesConfigs } from './angular-eslint.js';
|
|
6
6
|
import { getAngularTemplatesConfigs } from './angular-eslint-template.js';
|
|
7
|
-
import { getNgPerfectionistConfigs } from './ng-perfectionist.js';
|
|
8
7
|
export const createAngularConfigBlock = ({ ignored = [], jsons = [], prefix = 'app', shouldResolveAppRootDir = false, sources = [], templates = [], tests = [], tsconfigRootDir = undefined, } = {}) => ({
|
|
9
8
|
[IGNORED]: [
|
|
10
9
|
{
|
|
@@ -15,7 +14,6 @@ export const createAngularConfigBlock = ({ ignored = [], jsons = [], prefix = 'a
|
|
|
15
14
|
[SOURCES]: [
|
|
16
15
|
...(createTypeScriptConfigBlock({ sources })[SOURCES] || []),
|
|
17
16
|
...getAngularSourcesConfigs({ prefix, sources }),
|
|
18
|
-
...getNgPerfectionistConfigs({ sources }),
|
|
19
17
|
].map((config) => setTsconfigRootDir({
|
|
20
18
|
config,
|
|
21
19
|
shouldResolveAppRootDir,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"/","sources":["src/angular/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,OAAO,EACP,KAAK,EACL,OAAO,EACP,SAAS,EACT,KAAK,GACN,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,EACL,2BAA2B,EAC3B,gCAAgC,GACjC,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AACvE,OAAO,EAAE,wBAAwB,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"/","sources":["src/angular/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,OAAO,EACP,KAAK,EACL,OAAO,EACP,SAAS,EACT,KAAK,GACN,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,EACL,2BAA2B,EAC3B,gCAAgC,GACjC,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AACvE,OAAO,EAAE,wBAAwB,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAE1E,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,EACvC,OAAO,GAAG,EAAE,EACZ,KAAK,GAAG,EAAE,EACV,MAAM,GAAG,KAAK,EACd,uBAAuB,GAAG,KAAK,EAC/B,OAAO,GAAG,EAAE,EACZ,SAAS,GAAG,EAAE,EACd,KAAK,GAAG,EAAE,EACV,eAAe,GAAG,SAAS,MACH,EAAE,EAAe,EAAE,CAAC,CAAC;IAC7C,CAAC,OAAO,CAAC,EAAE;QACT;YACE,OAAO,EAAE,OAAO;SACjB;KACF;IACD,CAAC,KAAK,CAAC,EAAE,eAAe,CAAC,EAAE,KAAK,EAAE,CAAC;IACnC,CAAC,OAAO,CAAC,EAAE;QACT,GAAG,CAAC,2BAA2B,CAAC,EAAE,OAAO,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,EAAE,CAAC;QAC5D,GAAG,wBAAwB,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC;KACjD,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,EAAE,CACf,kBAAkB,CAAC;QACjB,MAAM;QACN,uBAAuB;QACvB,OAAO;QACP,eAAe;KAChB,CAAC,CACH;IACD,CAAC,SAAS,CAAC,EAAE,0BAA0B,CAAC,EAAE,SAAS,EAAE,CAAC;IACtD,CAAC,KAAK,CAAC,EAAE;QACP,GAAG,CAAC,gCAAgC,CAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC;KACvE,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,EAAE,CACf,kBAAkB,CAAC;QACjB,MAAM;QACN,uBAAuB;QACvB,OAAO,EAAE,KAAK;QACd,eAAe;KAChB,CAAC,CACH;CACF,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import ngPerfectionist from '@chris.araneo/eslint-plugin-ng-perfectionist';
|
|
2
|
-
import angular from 'angular-eslint';
|
|
3
|
-
import { match } from 'ts-pattern';
|
|
4
|
-
export const getNgPerfectionistConfigs = ({ sources, } = {}) => match(sources?.length ?? 0)
|
|
5
|
-
.with(0, () => [])
|
|
6
|
-
.otherwise(() => angular.configs.tsAll.map(({ plugins: _plugins, ...config }) => ({
|
|
7
|
-
...config,
|
|
8
|
-
files: sources,
|
|
9
|
-
plugins: {
|
|
10
|
-
'@chris.araneo/ng-perfectionist': ngPerfectionist,
|
|
11
|
-
},
|
|
12
|
-
rules: {
|
|
13
|
-
'@chris.araneo/ng-perfectionist/sort-component-imports': 'error',
|
|
14
|
-
'@chris.araneo/ng-perfectionist/sort-component-style-urls': 'error',
|
|
15
|
-
'@chris.araneo/ng-perfectionist/sort-ng-module-declarations': 'error',
|
|
16
|
-
'@chris.araneo/ng-perfectionist/sort-ng-module-exports': 'error',
|
|
17
|
-
'@chris.araneo/ng-perfectionist/sort-ng-module-imports': 'error',
|
|
18
|
-
},
|
|
19
|
-
})));
|
|
20
|
-
//# sourceMappingURL=ng-perfectionist.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ng-perfectionist.js","sourceRoot":"/","sources":["src/angular/ng-perfectionist.ts"],"names":[],"mappings":"AAAA,OAAO,eAAe,MAAM,8CAA8C,CAAC;AAC3E,OAAO,OAAO,MAAM,gBAAgB,CAAC;AAErC,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAMnC,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,EACxC,OAAO,MACE,EAAE,EAAmB,EAAE,CAChC,KAAK,CAAC,OAAO,EAAE,MAAM,IAAI,CAAC,CAAC;KACxB,IAAI,CAAC,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC;KACjB,SAAS,CAAC,GAAG,EAAE,CACd,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,CACvB,CAAC,EAAE,OAAO,EAAE,QAAQ,EAAE,GAAG,MAAM,EAAE,EAAE,EAAE,CACnC,CAAC;IACC,GAAG,MAAM;IACT,KAAK,EAAE,OAAO;IACd,OAAO,EAAE;QACP,gCAAgC,EAAE,eAAe;KAClD;IACD,KAAK,EAAE;QACL,uDAAuD,EAAE,OAAO;QAChE,0DAA0D,EACxD,OAAO;QACT,4DAA4D,EAC1D,OAAO;QACT,uDAAuD,EAAE,OAAO;QAChE,uDAAuD,EAAE,OAAO;KACjE;CACF,CAAkB,CACtB,CACF,CAAC"}
|