@breadstone-infrastructure/eslint-config 0.0.12-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.
Files changed (54) hide show
  1. package/Configs/Angular.d.ts +17 -0
  2. package/Configs/Angular.d.ts.map +1 -0
  3. package/Configs/Angular.js +160 -0
  4. package/Configs/Angular.js.map +1 -0
  5. package/Configs/Base.d.ts +207 -0
  6. package/Configs/Base.d.ts.map +1 -0
  7. package/Configs/Base.js +481 -0
  8. package/Configs/Base.js.map +1 -0
  9. package/Configs/Custom.d.ts +4 -0
  10. package/Configs/Custom.d.ts.map +1 -0
  11. package/Configs/Custom.js +90 -0
  12. package/Configs/Custom.js.map +1 -0
  13. package/Configs/Html.d.ts +57 -0
  14. package/Configs/Html.d.ts.map +1 -0
  15. package/Configs/Html.js +135 -0
  16. package/Configs/Html.js.map +1 -0
  17. package/Configs/Import.d.ts +4 -0
  18. package/Configs/Import.d.ts.map +1 -0
  19. package/Configs/Import.js +27 -0
  20. package/Configs/Import.js.map +1 -0
  21. package/Configs/Json.d.ts +4 -0
  22. package/Configs/Json.d.ts.map +1 -0
  23. package/Configs/Json.js +16 -0
  24. package/Configs/Json.js.map +1 -0
  25. package/Configs/Lit.d.ts +4 -0
  26. package/Configs/Lit.d.ts.map +1 -0
  27. package/Configs/Lit.js +44 -0
  28. package/Configs/Lit.js.map +1 -0
  29. package/Configs/Markdown.d.ts +4 -0
  30. package/Configs/Markdown.d.ts.map +1 -0
  31. package/Configs/Markdown.js +15 -0
  32. package/Configs/Markdown.js.map +1 -0
  33. package/Configs/Stylistic.d.ts +74 -0
  34. package/Configs/Stylistic.d.ts.map +1 -0
  35. package/Configs/Stylistic.js +421 -0
  36. package/Configs/Stylistic.js.map +1 -0
  37. package/Configs/Typescript.d.ts +132 -0
  38. package/Configs/Typescript.d.ts.map +1 -0
  39. package/Configs/Typescript.js +514 -0
  40. package/Configs/Typescript.js.map +1 -0
  41. package/Index.d.ts +72 -0
  42. package/Index.d.ts.map +1 -0
  43. package/Index.js +127 -0
  44. package/Index.js.map +1 -0
  45. package/LICENSE +21 -0
  46. package/Utils/Config.d.ts +9 -0
  47. package/Utils/Config.d.ts.map +1 -0
  48. package/Utils/Config.js +4 -0
  49. package/Utils/Config.js.map +1 -0
  50. package/Utils/Level.d.ts +20 -0
  51. package/Utils/Level.d.ts.map +1 -0
  52. package/Utils/Level.js +21 -0
  53. package/Utils/Level.js.map +1 -0
  54. package/package.json +31 -0
@@ -0,0 +1,17 @@
1
+ import type { Config } from '../Utils/Config.js';
2
+ /**
3
+ * The version of this configuration.
4
+ * Its important to have this version in sync with the package.json '@angular-eslint' version.
5
+ * That means that when we upgrade the package, we should also upgrade this version here also.
6
+ *
7
+ * @public
8
+ */
9
+ export declare const VERSION = "18.2.0";
10
+ /**
11
+ * The configuration
12
+ *
13
+ * @public
14
+ */
15
+ declare const _default: Config;
16
+ export default _default;
17
+ //# sourceMappingURL=Angular.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Angular.d.ts","sourceRoot":"","sources":["../../src/Configs/Angular.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAC;AAIjD;;;;;;GAMG;AACH,eAAO,MAAM,OAAO,WAAW,CAAC;AAEhC;;;;GAIG;wBA6IE,MAAM;AA5IX,wBA4IY"}
@@ -0,0 +1,160 @@
1
+ // #region Imports
2
+ import angularPlugin from '@angular-eslint/eslint-plugin';
3
+ import angularTemplatePlugin from '@angular-eslint/eslint-plugin-template';
4
+ import { Level } from '../Utils/Level.js';
5
+ // #endregion
6
+ /**
7
+ * The version of this configuration.
8
+ * Its important to have this version in sync with the package.json '@angular-eslint' version.
9
+ * That means that when we upgrade the package, we should also upgrade this version here also.
10
+ *
11
+ * @public
12
+ */
13
+ export const VERSION = '18.2.0';
14
+ /**
15
+ * The configuration
16
+ *
17
+ * @public
18
+ */
19
+ export default [
20
+ // For upgrade reasons, we use always all.
21
+ // This has the advantage that when we upgrade the plugin we always use the latest rule set.
22
+ angularPlugin.configs.all,
23
+ angularTemplatePlugin.configs.all,
24
+ // Now we override all rules that we are known.
25
+ // If here are missing rules, it means that the rule is not known to us or at this time when we wrote this code it was not available.
26
+ // If we change anything here, we should also inform the team about the changes.
27
+ {
28
+ name: 'mosaik-angular',
29
+ settings: {
30
+ version: VERSION
31
+ },
32
+ files: ['**/*.html'],
33
+ rules: {
34
+ '@angular-eslint/template-accessibility-alt-text': 'error',
35
+ '@angular-eslint/template-accessibility-elements-content': 'error',
36
+ '@angular-eslint/template-accessibility-label-for': 'error',
37
+ '@angular-eslint/template-accessibility-tabindex-no-positive': 'error',
38
+ '@angular-eslint/template-accessibility-table-scope': 'error',
39
+ '@angular-eslint/template-accessibility-valid-aria': 'error',
40
+ '@angular-eslint/template-click-events-have-key-events': 'error',
41
+ '@angular-eslint/template-mouse-events-have-key-events': 'error',
42
+ '@angular-eslint/template-no-any': 'error',
43
+ '@angular-eslint/template-no-autofocus': 'error',
44
+ '@angular-eslint/template-no-distracting-elements': 'error',
45
+ '@angular-eslint/template-no-negated-async': 'error',
46
+ '@angular-eslint/template-no-call-expression': 'error',
47
+ '@angular-eslint/template-conditional-complexity': [
48
+ 'warn',
49
+ 4
50
+ ],
51
+ '@angular-eslint/template-i18n': 'off',
52
+ '@angular-eslint/template-use-track-by-function': 'error',
53
+ '@angular-eslint/banana-in-box': 'error',
54
+ '@angular-eslint/no-unused-css': 'error',
55
+ '@angular-eslint/template-cyclomatic-complexity': [
56
+ 'warn',
57
+ 20
58
+ ],
59
+ '@angular-eslint/contextual-decorator': Level.Warn,
60
+ '@angular-eslint/contextual-lifecycle': Level.Error,
61
+ '@angular-eslint/no-attribute-decorator': Level.Off,
62
+ '@angular-eslint/no-lifecycle-call': Level.Error,
63
+ '@angular-eslint/no-output-native': Level.Error,
64
+ '@angular-eslint/no-pipe-impure': Level.Off,
65
+ '@angular-eslint/prefer-on-push-component-change-detection': Level.Warn,
66
+ '@angular-eslint/use-injectable-provided-in': Level.Off,
67
+ '@angular-eslint/use-lifecycle-interface': Level.Error,
68
+ '@angular-eslint/component-max-inline-declarations': [
69
+ Level.Error,
70
+ {
71
+ animations: 20,
72
+ styles: 8,
73
+ template: 8
74
+ }
75
+ ],
76
+ '@angular-eslint/no-conflicting-lifecycle': Level.Error,
77
+ '@angular-eslint/no-forward-ref': Level.Off,
78
+ '@angular-eslint/no-input-prefix': [
79
+ Level.Error,
80
+ {
81
+ prefixes: [
82
+ 'can',
83
+ 'should'
84
+ ]
85
+ }
86
+ ],
87
+ '@angular-eslint/no-input-rename': Level.Off,
88
+ '@angular-eslint/no-output-on-prefix': Level.Error,
89
+ '@angular-eslint/no-output-rename': Level.Off,
90
+ '@angular-eslint/prefer-output-readonly': Level.Error,
91
+ '@angular-eslint/relative-url-prefix': Level.Error,
92
+ '@angular-eslint/use-component-selector': Level.Error,
93
+ '@angular-eslint/use-component-view-encapsulation': Level.Off,
94
+ '@angular-eslint/use-pipe-transform-interface': Level.Error,
95
+ '@angular-eslint/component-class-suffix': [
96
+ Level.Error,
97
+ {
98
+ suffixes: [
99
+ 'Component',
100
+ 'View',
101
+ 'Template'
102
+ ]
103
+ }
104
+ ],
105
+ '@angular-eslint/component-selector': [
106
+ Level.Warn,
107
+ {
108
+ type: [
109
+ 'element',
110
+ 'attribute'
111
+ ],
112
+ prefix: [
113
+ 'ng',
114
+ 'ngx',
115
+ 'labs',
116
+ 'cdk',
117
+ 'app'
118
+ ],
119
+ style: 'kebab-case'
120
+ }
121
+ ],
122
+ '@angular-eslint/directive-class-suffix': [
123
+ Level.Error,
124
+ {
125
+ suffixes: [
126
+ 'Directive',
127
+ 'Component',
128
+ 'View',
129
+ 'Template',
130
+ 'Base'
131
+ ]
132
+ }
133
+ ],
134
+ '@angular-eslint/directive-selector': [
135
+ Level.Warn,
136
+ {
137
+ type: [
138
+ 'element',
139
+ 'attribute'
140
+ ],
141
+ prefix: [
142
+ 'ngx',
143
+ 'labs',
144
+ 'ui',
145
+ 'uix',
146
+ 'bs',
147
+ 'kit'
148
+ ],
149
+ style: 'camelCase'
150
+ }
151
+ ],
152
+ '@angular-eslint/no-host-metadata-property': Level.Off,
153
+ '@angular-eslint/no-inputs-metadata-property': Level.Error,
154
+ '@angular-eslint/no-outputs-metadata-property': Level.Error,
155
+ '@angular-eslint/no-queries-metadata-property': Level.Error,
156
+ '@angular-eslint/pipe-prefix': Level.Error
157
+ }
158
+ }
159
+ ];
160
+ //# sourceMappingURL=Angular.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Angular.js","sourceRoot":"","sources":["../../src/Configs/Angular.ts"],"names":[],"mappings":"AAAA,kBAAkB;AAElB,OAAO,aAAa,MAAM,+BAA+B,CAAC;AAC1D,OAAO,qBAAqB,MAAM,wCAAwC,CAAC;AAC3E,OAAO,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAG1C,aAAa;AAEb;;;;;;GAMG;AACH,MAAM,CAAC,MAAM,OAAO,GAAG,QAAQ,CAAC;AAEhC;;;;GAIG;AACH,eAAe;IACX,0CAA0C;IAC1C,4FAA4F;IAC5F,aAAa,CAAC,OAAO,CAAC,GAAG;IACzB,qBAAqB,CAAC,OAAO,CAAC,GAAG;IACjC,+CAA+C;IAC/C,qIAAqI;IACrI,gFAAgF;IAChF;QACI,IAAI,EAAE,gBAAgB;QACtB,QAAQ,EAAE;YACN,OAAO,EAAE,OAAO;SACnB;QACD,KAAK,EAAE,CAAC,WAAW,CAAC;QACpB,KAAK,EAAE;YACH,iDAAiD,EAAE,OAAO;YAC1D,yDAAyD,EAAE,OAAO;YAClE,kDAAkD,EAAE,OAAO;YAC3D,6DAA6D,EAAE,OAAO;YACtE,oDAAoD,EAAE,OAAO;YAC7D,mDAAmD,EAAE,OAAO;YAC5D,uDAAuD,EAAE,OAAO;YAChE,uDAAuD,EAAE,OAAO;YAChE,iCAAiC,EAAE,OAAO;YAC1C,uCAAuC,EAAE,OAAO;YAChD,kDAAkD,EAAE,OAAO;YAC3D,2CAA2C,EAAE,OAAO;YACpD,6CAA6C,EAAE,OAAO;YACtD,iDAAiD,EAAE;gBAC/C,MAAM;gBACN,CAAC;aACJ;YACD,+BAA+B,EAAE,KAAK;YACtC,gDAAgD,EAAE,OAAO;YACzD,+BAA+B,EAAE,OAAO;YACxC,+BAA+B,EAAE,OAAO;YACxC,gDAAgD,EAAE;gBAC9C,MAAM;gBACN,EAAE;aACL;YACD,sCAAsC,EAAE,KAAK,CAAC,IAAI;YAClD,sCAAsC,EAAE,KAAK,CAAC,KAAK;YACnD,wCAAwC,EAAE,KAAK,CAAC,GAAG;YACnD,mCAAmC,EAAE,KAAK,CAAC,KAAK;YAChD,kCAAkC,EAAE,KAAK,CAAC,KAAK;YAC/C,gCAAgC,EAAE,KAAK,CAAC,GAAG;YAC3C,2DAA2D,EAAE,KAAK,CAAC,IAAI;YACvE,4CAA4C,EAAE,KAAK,CAAC,GAAG;YACvD,yCAAyC,EAAE,KAAK,CAAC,KAAK;YACtD,mDAAmD,EAAE;gBACjD,KAAK,CAAC,KAAK;gBACX;oBACI,UAAU,EAAE,EAAE;oBACd,MAAM,EAAE,CAAC;oBACT,QAAQ,EAAE,CAAC;iBACd;aACJ;YACD,0CAA0C,EAAE,KAAK,CAAC,KAAK;YACvD,gCAAgC,EAAE,KAAK,CAAC,GAAG;YAC3C,iCAAiC,EAAE;gBAC/B,KAAK,CAAC,KAAK;gBACX;oBACI,QAAQ,EAAE;wBACN,KAAK;wBACL,QAAQ;qBACX;iBACJ;aACJ;YACD,iCAAiC,EAAE,KAAK,CAAC,GAAG;YAC5C,qCAAqC,EAAE,KAAK,CAAC,KAAK;YAClD,kCAAkC,EAAE,KAAK,CAAC,GAAG;YAC7C,wCAAwC,EAAE,KAAK,CAAC,KAAK;YACrD,qCAAqC,EAAE,KAAK,CAAC,KAAK;YAClD,wCAAwC,EAAE,KAAK,CAAC,KAAK;YACrD,kDAAkD,EAAE,KAAK,CAAC,GAAG;YAC7D,8CAA8C,EAAE,KAAK,CAAC,KAAK;YAC3D,wCAAwC,EAAE;gBACtC,KAAK,CAAC,KAAK;gBACX;oBACI,QAAQ,EAAE;wBACN,WAAW;wBACX,MAAM;wBACN,UAAU;qBACb;iBACJ;aACJ;YACD,oCAAoC,EAAE;gBAClC,KAAK,CAAC,IAAI;gBACV;oBACI,IAAI,EAAE;wBACF,SAAS;wBACT,WAAW;qBACd;oBACD,MAAM,EAAE;wBACJ,IAAI;wBACJ,KAAK;wBACL,MAAM;wBACN,KAAK;wBACL,KAAK;qBACR;oBACD,KAAK,EAAE,YAAY;iBACtB;aACJ;YACD,wCAAwC,EAAE;gBACtC,KAAK,CAAC,KAAK;gBACX;oBACI,QAAQ,EAAE;wBACN,WAAW;wBACX,WAAW;wBACX,MAAM;wBACN,UAAU;wBACV,MAAM;qBACT;iBACJ;aACJ;YACD,oCAAoC,EAAE;gBAClC,KAAK,CAAC,IAAI;gBACV;oBACI,IAAI,EAAE;wBACF,SAAS;wBACT,WAAW;qBACd;oBACD,MAAM,EAAE;wBACJ,KAAK;wBACL,MAAM;wBACN,IAAI;wBACJ,KAAK;wBACL,IAAI;wBACJ,KAAK;qBACR;oBACD,KAAK,EAAE,WAAW;iBACrB;aACJ;YACD,2CAA2C,EAAE,KAAK,CAAC,GAAG;YACtD,6CAA6C,EAAE,KAAK,CAAC,KAAK;YAC1D,8CAA8C,EAAE,KAAK,CAAC,KAAK;YAC3D,8CAA8C,EAAE,KAAK,CAAC,KAAK;YAC3D,6BAA6B,EAAE,KAAK,CAAC,KAAK;SAC7C;KACJ;CACM,CAAC"}
@@ -0,0 +1,207 @@
1
+ import type { Config } from '../Utils/Config.js';
2
+ /**
3
+ * | Name | Description | URL |
4
+ * |----------------------------------|-----------------------------------------------------------------------------|------------------------------------------------------------|
5
+ * | array-callback-return | Enforce return statements in callbacks of array methods | https://eslint.org/docs/latest/rules/array-callback-return |
6
+ * | constructor-super | Require super() calls in constructors | https://eslint.org/docs/latest/rules/constructor-super |
7
+ * | for-direction | Enforce “for” loop update clause moving the counter in the right direction | https://eslint.org/docs/latest/rules/for-direction |
8
+ * | getter-return | Enforce return statements in getters | https://eslint.org/docs/latest/rules/getter-return |
9
+ * | no-async-promise-executor | Disallow using an async function as a Promise executor | https://eslint.org/docs/latest/rules/no-async-promise-executor |
10
+ * | no-await-in-loop | Disallow await inside of loops | https://eslint.org/docs/latest/rules/no-await-in-loop |
11
+ * | no-class-assign | Disallow reassigning class members | https://eslint.org/docs/latest/rules/no-class-assign |
12
+ * | no-compare-neg-zero | Disallow comparing against -0 | https://eslint.org/docs/latest/rules/no-compare-neg-zero |
13
+ * | no-cond-assign | Disallow assignment operators in conditional expressions | https://eslint.org/docs/latest/rules/no-cond-assign |
14
+ * | no-const-assign | Disallow reassigning const variables | https://eslint.org/docs/latest/rules/no-const-assign |
15
+ * | no-constant-binary-expression | Disallow expressions where the operation doesn’t affect the value | https://eslint.org/docs/latest/rules/no-constant-binary-expression |
16
+ * | no-constant-condition | Disallow constant expressions in conditions | https://eslint.org/docs/latest/rules/no-constant-condition |
17
+ * | no-constructor-return | Disallow returning value from constructor | https://eslint.org/docs/latest/rules/no-constructor-return |
18
+ * | no-control-regex | Disallow control characters in regular expressions | https://eslint.org/docs/latest/rules/no-control-regex |
19
+ * | no-debugger | Disallow the use of debugger | https://eslint.org/docs/latest/rules/no-debugger |
20
+ * | no-dupe-args | Disallow duplicate arguments in function definitions | https://eslint.org/docs/latest/rules/no-dupe-args |
21
+ * | no-dupe-class-members | Disallow duplicate class members | https://eslint.org/docs/latest/rules/no-dupe-class-members |
22
+ * | no-dupe-else-if | Disallow duplicate conditions in if-else-if chains | https://eslint.org/docs/latest/rules/no-dupe-else-if |
23
+ * | no-dupe-keys | Disallow duplicate keys in object literals | https://eslint.org/docs/latest/rules/no-dupe-keys |
24
+ * | no-duplicate-case | Disallow duplicate case labels | https://eslint.org/docs/latest/rules/no-duplicate-case |
25
+ * | no-duplicate-imports | Disallow duplicate module imports | https://eslint.org/docs/latest/rules/no-duplicate-imports |
26
+ * | no-empty-character-class | Disallow empty character classes in regular expressions | https://eslint.org/docs/latest/rules/no-empty-character-class |
27
+ * | no-empty-pattern | Disallow empty destructuring patterns | https://eslint.org/docs/latest/rules/no-empty-pattern |
28
+ * | no-ex-assign | Disallow reassigning exceptions in catch clauses | https://eslint.org/docs/latest/rules/no-ex-assign |
29
+ * | no-fallthrough | Disallow fallthrough of case statements | https://eslint.org/docs/latest/rules/no-fallthrough |
30
+ * | no-func-assign | Disallow reassigning function declarations | https://eslint.org/docs/latest/rules/no-func-assign |
31
+ * | no-import-assign | Disallow assigning to imported bindings | https://eslint.org/docs/latest/rules/no-import-assign |
32
+ * | no-inner-declarations | Disallow variable or function declarations in nested blocks | https://eslint.org/docs/latest/rules/no-inner-declarations |
33
+ * | no-invalid-regexp | Disallow invalid regular expression strings in RegExp constructors | https://eslint.org/docs/latest/rules/no-invalid-regexp |
34
+ * | no-irregular-whitespace | Disallow irregular whitespace | https://eslint.org/docs/latest/rules/no-irregular-whitespace |
35
+ * | no-loss-of-precision | Disallow literal numbers that lose precision | https://eslint.org/docs/latest/rules/no-loss-of-precision |
36
+ * | no-misleading-character-class | Disallow characters which are made with multiple code points in character class syntax | https://eslint.org/docs/latest/rules/no-misleading-character-class |
37
+ * | no-new-native-nonconstructor | Disallow new operators with global non-constructor functions | https://eslint.org/docs/latest/rules/no-new-native-nonconstructor |
38
+ * | no-obj-calls | Disallow calling global object properties as functions | https://eslint.org/docs/latest/rules/no-obj-calls |
39
+ * | no-promise-executor-return | Disallow returning values from Promise executor functions | https://eslint.org/docs/latest/rules/no-promise-executor-return |
40
+ * | no-prototype-builtins | Disallow calling some Object.prototype methods directly on objects | https://eslint.org/docs/latest/rules/no-prototype-builtins |
41
+ * | no-self-assign | Disallow assignments where both sides are exactly the same | https://eslint.org/docs/latest/rules/no-self-assign |
42
+ * | no-self-compare | Disallow comparisons where both sides are exactly the same | https://eslint.org/docs/latest/rules/no-self-compare |
43
+ * | no-setter-return | Disallow returning values from setters | https://eslint.org/docs/latest/rules/no-setter-return |
44
+ * | no-sparse-arrays | Disallow sparse arrays | https://eslint.org/docs/latest/rules/no-sparse-arrays |
45
+ * | no-template-curly-in-string | Disallow template literal placeholder syntax in regular strings | https://eslint.org/docs/latest/rules/no-template-curly-in-string |
46
+ * | no-this-before-super | Disallow this/super before calling super() in constructors | https://eslint.org/docs/latest/rules/no-this-before-super |
47
+ * | no-undef | Disallow the use of undeclared variables unless mentioned in /*global *\/ comments | https://eslint.org/docs/latest/rules/no-undef |
48
+ * | no-unexpected-multiline | Disallow confusing multiline expressions | https://eslint.org/docs/latest/rules/no-unexpected-multiline |
49
+ * | no-unmodified-loop-condition | Disallow unmodified loop conditions | https://eslint.org/docs/latest/rules/no-unmodified-loop-condition |
50
+ * | no-unreachable | Disallow unreachable code after return, throw, continue, and break statements | https://eslint.org/docs/latest/rules/no-unreachable |
51
+ * | no-unreachable-loop | Disallow loops with a body that allows only one iteration | https://eslint.org/docs/latest/rules/no-unreachable-loop |
52
+ * | no-unsafe-finally | Disallow control flow statements in finally blocks | https://eslint.org/docs/latest/rules/no-unsafe-finally |
53
+ * | no-unsafe-negation | Disallow negating the left operand of relational operators | https://eslint.org/docs/latest/rules/no-unsafe-negation |
54
+ * | no-unsafe-optional-chaining | Disallow use of optional chaining in contexts where the undefined value is not allowed | https://eslint.org/docs/latest/rules/no-unsafe-optional-chaining |
55
+ * | no-unused-private-class-members | Disallow unused private class members | https://eslint.org/docs/latest/rules/no-unused-private-class-members |
56
+ * | no-unused-vars | Disallow unused variables | https://eslint.org/docs/latest/rules/no-unused-vars |
57
+ * | no-use-before-define | Disallow the use of variables before they are defined | https://eslint.org/docs/latest/rules/no-use-before-define |
58
+ * | no-useless-assignment | Disallow variable assignments when the value is not used | https://eslint.org/docs/latest/rules/no-useless-assignment |
59
+ * | no-useless-backreference | Disallow useless backreferences in regular expressions | https://eslint.org/docs/latest/rules/no-useless-backreference |
60
+ * | require-atomic-updates | Disallow assignments that can lead to race conditions due to usage of await or yield | https://eslint.org/docs/latest/rules/require-atomic-updates |
61
+ * | use-isnan | Require calls to isNaN() when checking for NaN | https://eslint.org/docs/latest/rules/use-isnan |
62
+ * | valid-typeof | Enforce comparing typeof expressions against valid strings | https://eslint.org/docs/latest/rules/valid-typeof |
63
+ * | accessor-pairs | Enforce getter and setter pairs in objects and classes | https://eslint.org/docs/latest/rules/accessor-pairs |
64
+ * | arrow-body-style | Require braces around arrow function bodies | https://eslint.org/docs/latest/rules/arrow-body-style |
65
+ * | block-scoped-var | Enforce the use of variables within the scope they are defined | https://eslint.org/docs/latest/rules/block-scoped-var |
66
+ * | camelcase | Enforce camelcase naming convention | https://eslint.org/docs/latest/rules/camelcase |
67
+ * | capitalized-comments | Enforce or disallow capitalization of the first letter of a comment | https://eslint.org/docs/latest/rules/capitalized-comments |
68
+ * | class-methods-use-this | Enforce that class methods utilize this | https://eslint.org/docs/latest/rules/class-methods-use-this |
69
+ * | complexity | Enforce a maximum cyclomatic complexity allowed in a program | https://eslint.org/docs/latest/rules/complexity |
70
+ * | consistent-return | Require return statements to either always or never specify values | https://eslint.org/docs/latest/rules/consistent-return |
71
+ * | consistent-this | Enforce consistent naming when capturing the current execution context | https://eslint.org/docs/latest/rules/consistent-this |
72
+ * | curly | Enforce consistent brace style for all control statements | https://eslint.org/docs/latest/rules/curly |
73
+ * | default-case | Require default cases in switch statements | https://eslint.org/docs/latest/rules/default-case |
74
+ * | default-case-last | Enforce default clauses in switch statements to be last | https://eslint.org/docs/latest/rules/default-case-last |
75
+ * | default-param-last | Enforce default parameters to be last | https://eslint.org/docs/latest/rules/default-param-last |
76
+ * | dot-notation | Enforce dot notation whenever possible | https://eslint.org/docs/latest/rules/dot-notation |
77
+ * | eqeqeq | Require the use of === and !== | https://eslint.org/docs/latest/rules/eqeqeq |
78
+ * | func-name-matching | Require function names to match the name of the variable or property to which they are assigned | https://eslint.org/docs/latest/rules/func-name-matching |
79
+ * | func-names | Require or disallow named function expressions | https://eslint.org/docs/latest/rules/func-names |
80
+ * | func-style | Enforce the consistent use of either function declarations or expressions assigned to variables | https://eslint.org/docs/latest/rules/func-style |
81
+ * | grouped-accessor-pairs | Require grouped accessor pairs in object literals and classes | https://eslint.org/docs/latest/rules/grouped-accessor-pairs |
82
+ * | guard-for-in | Require for-in loops to include an if statement | https://eslint.org/docs/latest/rules/guard-for-in |
83
+ * | id-denylist | Disallow specified identifiers | https://eslint.org/docs/latest/rules/id-denylist |
84
+ * | id-length | Enforce minimum and maximum identifier lengths | https://eslint.org/docs/latest/rules/id-length |
85
+ * | id-match | Require identifiers to match a specified regular expression | https://eslint.org/docs/latest/rules/id-match |
86
+ * | init-declarations | Require or disallow initialization in variable declarations | https://eslint.org/docs/latest/rules/init-declarations |
87
+ * | logical-assignment-operators | Require or disallow logical assignment operator shorthand | https://eslint.org/docs/latest/rules/logical-assignment-operators |
88
+ * | max-classes-per-file | Enforce a maximum number of classes per file | https://eslint.org/docs/latest/rules/max-classes-per-file |
89
+ * | max-depth | Enforce a maximum depth that blocks can be nested | https://eslint.org/docs/latest/rules/max-depth |
90
+ * | max-lines | Enforce a maximum number of lines per file | https://eslint.org/docs/latest/rules/max-lines |
91
+ * | max-lines-per-function | Enforce a maximum number of lines of code in a function | https://eslint.org/docs/latest/rules/max-lines-per-function |
92
+ * | max-nested-callbacks | Enforce a maximum depth that callbacks can be nested | https://eslint.org/docs/latest/rules/max-nested-callbacks |
93
+ * | max-params | Enforce a maximum number of parameters in function definitions | https://eslint.org/docs/latest/rules/max-params |
94
+ * | max-statements | Enforce a maximum number of statements allowed in function blocks | https://eslint.org/docs/latest/rules/max-statements |
95
+ * | new-cap | Require constructor names to begin with a capital letter | https://eslint.org/docs/latest/rules/new-cap |
96
+ * | no-alert | Disallow the use of alert, confirm, and prompt | https://eslint.org/docs/latest/rules/no-alert |
97
+ * | no-array-constructor | Disallow Array constructors | https://eslint.org/docs/latest/rules/no-array-constructor |
98
+ * | no-bitwise | Disallow bitwise operators | https://eslint.org/docs/latest/rules/no-bitwise |
99
+ * | no-caller | Disallow the use of arguments.caller or arguments.callee | https://eslint.org/docs/latest/rules/no-caller |
100
+ * | no-case-declarations | Disallow lexical declarations in case clauses | https://eslint.org/docs/latest/rules/no-case-declarations |
101
+ * | no-console | Disallow the use of console | https://eslint.org/docs/latest/rules/no-console |
102
+ * | no-continue | Disallow continue statements | https://eslint.org/docs/latest/rules/no-continue |
103
+ * | no-delete-var | Disallow deleting variables | https://eslint.org/docs/latest/rules/no-delete-var |
104
+ * | no-div-regex | Disallow equal signs explicitly at the beginning of regular expressions | https://eslint.org/docs/latest/rules/no-div-regex |
105
+ * | no-else-return | Disallow else blocks after return statements in if statements | https://eslint.org/docs/latest/rules/no-else-return |
106
+ * | no-empty | Disallow empty block statements | https://eslint.org/docs/latest/rules/no-empty |
107
+ * | no-empty-function | Disallow empty functions | https://eslint.org/docs/latest/rules/no-empty-function |
108
+ * | no-empty-static-block | Disallow empty static blocks | https://eslint.org/docs/latest/rules/no-empty-static-block |
109
+ * | no-eq-null | Disallow null comparisons without type-checking operators | https://eslint.org/docs/latest/rules/no-eq-null |
110
+ * | no-eval | Disallow the use of eval() | https://eslint.org/docs/latest/rules/no-eval |
111
+ * | no-extend-native | Disallow extending native types | https://eslint.org/docs/latest/rules/no-extend-native |
112
+ * | no-extra-bind | Disallow unnecessary calls to .bind() | https://eslint.org/docs/latest/rules/no-extra-bind |
113
+ * | no-extra-boolean-cast | Disallow unnecessary boolean casts | https://eslint.org/docs/latest/rules/no-extra-boolean-cast |
114
+ * | no-extra-label | Disallow unnecessary labels | https://eslint.org/docs/latest/rules/no-extra-label |
115
+ * | no-global-assign | Disallow assignments to native objects or read-only global variables | https://eslint.org/docs/latest/rules/no-global-assign |
116
+ * | no-implicit-coercion | Disallow shorthand type conversions | https://eslint.org/docs/latest/rules/no-implicit-coercion |
117
+ * | no-implicit-globals | Disallow declarations in the global scope | https://eslint.org/docs/latest/rules/no-implicit-globals |
118
+ * | no-implied-eval | Disallow the use of eval()-like methods | https://eslint.org/docs/latest/rules/no-implied-eval |
119
+ * | no-inline-comments | Disallow inline comments after code | https://eslint.org/docs/latest/rules/no-inline-comments |
120
+ * | no-invalid-this | Disallow use of this in contexts where the value of this is undefined | https://eslint.org/docs/latest/rules/no-invalid-this |
121
+ * | no-iterator | Disallow the use of the __iterator__ property | https://eslint.org/docs/latest/rules/no-iterator |
122
+ * | no-label-var | Disallow labels that share a name with a variable | https://eslint.org/docs/latest/rules/no-label-var |
123
+ * | no-labels | Disallow labeled statements | https://eslint.org/docs/latest/rules/no-labels |
124
+ * | no-lone-blocks | Disallow unnecessary nested blocks | https://eslint.org/docs/latest/rules/no-lone-blocks |
125
+ * | no-lonely-if | Disallow if statements as the only statement in else blocks | https://eslint.org/docs/latest/rules/no-lonely-if |
126
+ * | no-loop-func | Disallow function declarations that contain unsafe references inside loop statements | https://eslint.org/docs/latest/rules/no-loop-func |
127
+ * | no-magic-numbers | Disallow magic numbers | https://eslint.org/docs/latest/rules/no-magic-numbers |
128
+ * | no-multi-assign | Disallow use of chained assignment expressions | https://eslint.org/docs/latest/rules/no-multi-assign |
129
+ * | no-multi-str | Disallow multiline strings | https://eslint.org/docs/latest/rules/no-multi-str |
130
+ * | no-negated-condition | Disallow negated conditions | https://eslint.org/docs/latest/rules/no-negated-condition |
131
+ * | no-nested-ternary | Disallow nested ternary expressions | https://eslint.org/docs/latest/rules/no-nested-ternary |
132
+ * | no-new | Disallow new operators outside of assignments or comparisons | https://eslint.org/docs/latest/rules/no-new |
133
+ * | no-new-func | Disallow new operators with the Function object | https://eslint.org/docs/latest/rules/no-new-func |
134
+ * | no-new-wrappers | Disallow new operators with the String, Number, and Boolean objects | https://eslint.org/docs/latest/rules/no-new-wrappers |
135
+ * | no-nonoctal-decimal-escape | Disallow \8 and \9 escape sequences in string literals | https://eslint.org/docs/latest/rules/no-nonoctal-decimal-escape |
136
+ * | no-object-constructor | Disallow calls to the Object constructor without an argument | https://eslint.org/docs/latest/rules/no-object-constructor |
137
+ * | no-octal | Disallow octal literals | https://eslint.org/docs/latest/rules/no-octal |
138
+ * | no-octal-escape | Disallow octal escape sequences in string literals | https://eslint.org/docs/latest/rules/no-octal-escape |
139
+ * | no-param-reassign | Disallow reassigning function parameters | https://eslint.org/docs/latest/rules/no-param-reassign |
140
+ * | no-plusplus | Disallow the unary operators ++ and -- | https://eslint.org/docs/latest/rules/no-plusplus |
141
+ * | no-proto | Disallow the use of the __proto__ property | https://eslint.org/docs/latest/rules/no-proto |
142
+ * | no-redeclare | Disallow variable redeclaration | https://eslint.org/docs/latest/rules/no-redeclare |
143
+ * | no-regex-spaces | Disallow multiple spaces in regular expressions | https://eslint.org/docs/latest/rules/no-regex-spaces |
144
+ * | no-restricted-exports | Disallow specified names in exports | https://eslint.org/docs/latest/rules/no-restricted-exports |
145
+ * | no-restricted-globals | Disallow specified global variables | https://eslint.org/docs/latest/rules/no-restricted-globals |
146
+ * | no-restricted-imports | Disallow specified modules when loaded by import | https://eslint.org/docs/latest/rules/no-restricted-imports |
147
+ * | no-restricted-properties | Disallow certain properties on certain objects | https://eslint.org/docs/latest/rules/no-restricted-properties |
148
+ * | no-restricted-syntax | Disallow specified syntax | https://eslint.org/docs/latest/rules/no-restricted-syntax |
149
+ * | no-return-assign | Disallow assignment operators in return statements | https://eslint.org/docs/latest/rules/no-return-assign |
150
+ * | no-script-url | Disallow javascript: urls | https://eslint.org/docs/latest/rules/no-script-url |
151
+ * | no-sequences | Disallow comma operators | https://eslint.org/docs/latest/rules/no-sequences |
152
+ * | no-shadow | Disallow variable declarations from shadowing variables declared in the outer scope | https://eslint.org/docs/latest/rules/no-shadow |
153
+ * | no-shadow-restricted-names | Disallow identifiers from shadowing restricted names | https://eslint.org/docs/latest/rules/no-shadow-restricted-names |
154
+ * | no-ternary | Disallow ternary operators | https://eslint.org/docs/latest/rules/no-ternary |
155
+ * | no-throw-literal | Disallow throwing literals as exceptions | https://eslint.org/docs/latest/rules/no-throw-literal |
156
+ * | no-undef-init | Disallow initializing variables to undefined | https://eslint.org/docs/latest/rules/no-undef-init |
157
+ * | no-undefined | Disallow the use of undefined as an identifier | https://eslint.org/docs/latest/rules/no-undefined |
158
+ * | no-underscore-dangle | Disallow dangling underscores in identifiers | https://eslint.org/docs/latest/rules/no-underscore-dangle |
159
+ * | no-unneeded-ternary | Disallow ternary operators when simpler alternatives exist | https://eslint.org/docs/latest/rules/no-unneeded-ternary |
160
+ * | no-unused-expressions | Disallow unused expressions | https://eslint.org/docs/latest/rules/no-unused-expressions |
161
+ * | no-unused-labels | Disallow unused labels | https://eslint.org/docs/latest/rules/no-unused-labels |
162
+ * | no-useless-call | Disallow unnecessary calls to .call() and .apply() | https://eslint.org/docs/latest/rules/no-useless-call |
163
+ * | no-useless-catch | Disallow unnecessary catch clauses | https://eslint.org/docs/latest/rules/no-useless-catch |
164
+ * | no-useless-computed-key | Disallow unnecessary computed property keys in objects and classes | https://eslint.org/docs/latest/rules/no-useless-computed-key |
165
+ * | no-useless-concat | Disallow unnecessary concatenation of literals or template literals | https://eslint.org/docs/latest/rules/no-useless-concat |
166
+ * | no-useless-constructor | Disallow unnecessary constructors | https://eslint.org/docs/latest/rules/no-useless-constructor |
167
+ * | no-useless-escape | Disallow unnecessary escape characters | https://eslint.org/docs/latest/rules/no-useless-escape |
168
+ * | no-useless-rename | Disallow renaming import, export, and destructured assignments to the same name | https://eslint.org/docs/latest/rules/no-useless-rename |
169
+ * | no-useless-return | Disallow redundant return statements | https://eslint.org/docs/latest/rules/no-useless-return |
170
+ * | no-var | Require let or const instead of var | https://eslint.org/docs/latest/rules/no-var |
171
+ * | no-void | Disallow void operators | https://eslint.org/docs/latest/rules/no-void |
172
+ * | no-warning-comments | Disallow specified warning terms in comments | https://eslint.org/docs/latest/rules/no-warning-comments |
173
+ * | no-with | Disallow with statements | https://eslint.org/docs/latest/rules/no-with |
174
+ * | object-shorthand | Require or disallow method and property shorthand syntax for object literals | https://eslint.org/docs/latest/rules/object-shorthand |
175
+ * | one-var | Enforce variables to be declared either together or separately in functions | https://eslint.org/docs/latest/rules/one-var |
176
+ * | operator-assignment | Require or disallow assignment operator shorthand where possible | https://eslint.org/docs/latest/rules/operator-assignment |
177
+ * | prefer-arrow-callback | Require using arrow functions for callbacks | https://eslint.org/docs/latest/rules/prefer-arrow-callback |
178
+ * | prefer-const | Require const declarations for variables that are never reassigned after declared | https://eslint.org/docs/latest/rules/prefer-const |
179
+ * | prefer-destructuring | Require destructuring from arrays and/or objects | https://eslint.org/docs/latest/rules/prefer-destructuring |
180
+ * | prefer-exponentiation-operator | Disallow the use of Math.pow in favor of the ** operator | https://eslint.org/docs/latest/rules/prefer-exponentiation-operator |
181
+ * | prefer-named-capture-group | Enforce using named capture group in regular expression | https://eslint.org/docs/latest/rules/prefer-named-capture-group |
182
+ * | prefer-numeric-literals | Disallow parseInt() and Number.parseInt() in favor of binary, octal, and hexadecimal literals | https://eslint.org/docs/latest/rules/prefer-numeric-literals |
183
+ * | prefer-object-has-own | Disallow use of Object.prototype.hasOwnProperty.call() and prefer use of Object.hasOwn() | https://eslint.org/docs/latest/rules/prefer-object-has-own |
184
+ * | prefer-object-spread | Disallow using Object.assign with an object literal as the first argument and prefer the use of object spread instead | https://eslint.org/docs/latest/rules/prefer-object-spread |
185
+ * | prefer-promise-reject-errors | Require using Error objects as Promise rejection reasons | https://eslint.org/docs/latest/rules/prefer-promise-reject-errors |
186
+ * | prefer-regex-literals | Disallow use of the RegExp constructor in favor of regular expression literals | https://eslint.org/docs/latest/rules/prefer-regex-literals |
187
+ * | prefer-rest-params | Require rest parameters instead of arguments | https://eslint.org/docs/latest/rules/prefer-rest-params |
188
+ * | prefer-spread | Require spread operators instead of .apply() | https://eslint.org/docs/latest/rules/prefer-spread |
189
+ * | prefer-template | Require template literals instead of string concatenation | https://eslint.org/docs/latest/rules/prefer-template |
190
+ * | radix | Enforce the consistent use of the radix argument when using parseInt() | https://eslint.org/docs/latest/rules/radix |
191
+ * | require-await | Disallow async functions which have no await expression | https://eslint.org/docs/latest/rules/require-await |
192
+ * | require-unicode-regexp | Enforce the use of u or v flag on RegExp | https://eslint.org/docs/latest/rules/require-unicode-regexp |
193
+ * | require-yield | Require generator functions to contain yield | https://eslint.org/docs/latest/rules/require-yield |
194
+ * | sort-imports | Enforce sorted import declarations within modules | https://eslint.org/docs/latest/rules/sort-imports |
195
+ * | sort-keys | Require object keys to be sorted | https://eslint.org/docs/latest/rules/sort-keys |
196
+ * | sort-vars | Require variables within the same declaration block to be sorted | https://eslint.org/docs/latest/rules/sort-vars |
197
+ * | strict | Require or disallow strict mode directives | https://eslint.org/docs/latest/rules/strict |
198
+ * | symbol-description | Require symbol descriptions | https://eslint.org/docs/latest/rules/symbol-description |
199
+ * | vars-on-top | Require var declarations be placed at the top of their containing scope | https://eslint.org/docs/latest/rules/vars-on-top |
200
+ * | yoda | Require or disallow “Yoda” conditions | https://eslint.org/docs/latest/rules/yoda |
201
+ * | unicode-bom | Require or disallow Unicode byte order mark (BOM) | https://eslint.org/docs/latest/rules/unicode-bom |
202
+ *
203
+ * @public
204
+ */
205
+ declare const _default: Config;
206
+ export default _default;
207
+ //# sourceMappingURL=Base.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Base.d.ts","sourceRoot":"","sources":["../../src/Configs/Base.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAC;AAKjD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0MG;wBAiRE,MAAM;AAhRX,wBAgRY"}