skyux-eslint 12.2.0 → 12.4.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skyux-eslint",
3
- "version": "12.2.0",
3
+ "version": "12.4.0",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "description": "Recommended ESLint configuration for SKY UX projects",
6
6
  "keywords": [
@@ -25,7 +25,7 @@
25
25
  "@typescript-eslint/utils": "^8.29.0"
26
26
  },
27
27
  "dependencies": {
28
- "@skyux/manifest": "12.2.0",
28
+ "@skyux/manifest": "12.4.0",
29
29
  "tslib": "^2.8.1"
30
30
  },
31
31
  "types": "./src/index.d.ts",
package/src/index.d.ts CHANGED
@@ -234,6 +234,32 @@ declare const configs: {
234
234
  };
235
235
  })[];
236
236
  };
237
+ declare const plugins: {
238
+ templatePlugin: {
239
+ meta: {
240
+ name: string;
241
+ };
242
+ processors: {
243
+ 'extract-inline-html': {
244
+ meta: {
245
+ name: string;
246
+ };
247
+ preprocess: typeof import("@angular-eslint/eslint-plugin-template/dist/processors").preprocessComponentFile;
248
+ postprocess: typeof import("@angular-eslint/eslint-plugin-template/dist/processors").postprocessComponentFile;
249
+ supportsAutofix: boolean;
250
+ };
251
+ };
252
+ rules: {
253
+ "no-deprecated-classnames": import("@typescript-eslint/utils/ts-eslint").RuleModule<string, readonly unknown[], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
254
+ "no-deprecated-directives": import("@typescript-eslint/utils/ts-eslint").RuleModule<string, readonly unknown[], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
255
+ "no-legacy-icons": import("@typescript-eslint/utils/ts-eslint").RuleModule<string, readonly unknown[], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
256
+ "no-radio-group-with-nested-list": import("@typescript-eslint/utils/ts-eslint").RuleModule<string, readonly unknown[], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
257
+ "no-unbound-id": import("@typescript-eslint/utils/ts-eslint").RuleModule<string, readonly unknown[], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
258
+ "prefer-label-text": import("@typescript-eslint/utils/ts-eslint").RuleModule<string, readonly unknown[], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
259
+ };
260
+ };
261
+ tsPlugin: import("@typescript-eslint/utils/ts-eslint").FlatConfig.Plugin;
262
+ };
237
263
  declare const _default: {
238
264
  configs: {
239
265
  templateAll: ({
@@ -471,6 +497,32 @@ declare const _default: {
471
497
  };
472
498
  })[];
473
499
  };
500
+ plugins: {
501
+ templatePlugin: {
502
+ meta: {
503
+ name: string;
504
+ };
505
+ processors: {
506
+ 'extract-inline-html': {
507
+ meta: {
508
+ name: string;
509
+ };
510
+ preprocess: typeof import("@angular-eslint/eslint-plugin-template/dist/processors").preprocessComponentFile;
511
+ postprocess: typeof import("@angular-eslint/eslint-plugin-template/dist/processors").postprocessComponentFile;
512
+ supportsAutofix: boolean;
513
+ };
514
+ };
515
+ rules: {
516
+ "no-deprecated-classnames": import("@typescript-eslint/utils/ts-eslint").RuleModule<string, readonly unknown[], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
517
+ "no-deprecated-directives": import("@typescript-eslint/utils/ts-eslint").RuleModule<string, readonly unknown[], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
518
+ "no-legacy-icons": import("@typescript-eslint/utils/ts-eslint").RuleModule<string, readonly unknown[], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
519
+ "no-radio-group-with-nested-list": import("@typescript-eslint/utils/ts-eslint").RuleModule<string, readonly unknown[], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
520
+ "no-unbound-id": import("@typescript-eslint/utils/ts-eslint").RuleModule<string, readonly unknown[], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
521
+ "prefer-label-text": import("@typescript-eslint/utils/ts-eslint").RuleModule<string, readonly unknown[], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
522
+ };
523
+ };
524
+ tsPlugin: import("@typescript-eslint/utils/ts-eslint").FlatConfig.Plugin;
525
+ };
474
526
  };
475
527
  export default _default;
476
- export { configs };
528
+ export { configs, plugins };
package/src/index.js CHANGED
@@ -1,11 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.configs = void 0;
3
+ exports.plugins = exports.configs = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const template_all_1 = tslib_1.__importDefault(require("./configs/template-all"));
6
6
  const template_recommended_1 = tslib_1.__importDefault(require("./configs/template-recommended"));
7
7
  const ts_all_1 = tslib_1.__importDefault(require("./configs/ts-all"));
8
8
  const ts_recommended_1 = tslib_1.__importDefault(require("./configs/ts-recommended"));
9
+ const template_plugin_1 = tslib_1.__importDefault(require("./plugins/template-plugin"));
10
+ const ts_plugin_1 = tslib_1.__importDefault(require("./plugins/ts-plugin"));
9
11
  const configs = {
10
12
  templateAll: template_all_1.default,
11
13
  templateRecommended: template_recommended_1.default,
@@ -13,8 +15,14 @@ const configs = {
13
15
  tsRecommended: ts_recommended_1.default,
14
16
  };
15
17
  exports.configs = configs;
18
+ const plugins = {
19
+ templatePlugin: template_plugin_1.default,
20
+ tsPlugin: ts_plugin_1.default,
21
+ };
22
+ exports.plugins = plugins;
16
23
  // ESM
17
24
  exports.default = {
18
25
  configs,
26
+ plugins,
19
27
  };
20
28
  //# sourceMappingURL=index.js.map
package/src/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../libs/sdk/skyux-eslint/src/index.ts"],"names":[],"mappings":";;;;AAAA,kFAAiD;AACjD,kGAAiE;AACjE,sEAAqC;AACrC,sFAAqD;AAErD,MAAM,OAAO,GAAG;IACd,WAAW,EAAX,sBAAW;IACX,mBAAmB,EAAnB,8BAAmB;IACnB,KAAK,EAAL,gBAAK;IACL,aAAa,EAAb,wBAAa;CACd,CAAC;AAQO,0BAAO;AANhB,MAAM;AACN,kBAAe;IACb,OAAO;CACR,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../libs/sdk/skyux-eslint/src/index.ts"],"names":[],"mappings":";;;;AAAA,kFAAiD;AACjD,kGAAiE;AACjE,sEAAqC;AACrC,sFAAqD;AACrD,wFAAuD;AACvD,4EAA2C;AAE3C,MAAM,OAAO,GAAG;IACd,WAAW,EAAX,sBAAW;IACX,mBAAmB,EAAnB,8BAAmB;IACnB,KAAK,EAAL,gBAAK;IACL,aAAa,EAAb,wBAAa;CACd,CAAC;AAcO,0BAAO;AAZhB,MAAM,OAAO,GAAG;IACd,cAAc,EAAd,yBAAc;IACd,QAAQ,EAAR,mBAAQ;CACT,CAAC;AASgB,0BAAO;AAPzB,MAAM;AACN,kBAAe;IACb,OAAO;IACP,OAAO;CACR,CAAC"}