eslint-plugin-nima 1.2.4 → 1.2.6
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 +18 -18
- package/dist/constants/boolean-prefixes.js.map +1 -1
- package/dist/constants/consoles.js.map +1 -1
- package/dist/constants/hooks.js.map +1 -1
- package/dist/index.d.ts +25 -24
- package/dist/index.js +13 -57
- package/dist/index.js.map +1 -1
- package/dist/{models/boolean-naming-convention.model.d.ts → rules/boolean-naming-convention/config.d.ts} +11 -0
- package/dist/rules/boolean-naming-convention/config.js +70 -0
- package/dist/rules/boolean-naming-convention/config.js.map +1 -0
- package/dist/rules/boolean-naming-convention/create.d.ts +11 -0
- package/dist/rules/boolean-naming-convention/create.js +415 -0
- package/dist/rules/boolean-naming-convention/create.js.map +1 -0
- package/dist/rules/boolean-naming-convention/index.d.ts +2 -0
- package/dist/rules/boolean-naming-convention/index.js +22 -0
- package/dist/rules/boolean-naming-convention/index.js.map +1 -0
- package/dist/rules/{restrict-imports.d.ts → boolean-naming-convention/rule.d.ts} +2 -2
- package/dist/rules/boolean-naming-convention/rule.js +14 -0
- package/dist/rules/boolean-naming-convention/rule.js.map +1 -0
- package/dist/rules/index.d.ts +12 -0
- package/dist/rules/index.js +49 -0
- package/dist/rules/index.js.map +1 -0
- package/dist/rules/no-handler-suffix/config.d.ts +14 -0
- package/dist/rules/no-handler-suffix/config.js +23 -0
- package/dist/rules/no-handler-suffix/config.js.map +1 -0
- package/dist/rules/no-handler-suffix/create.d.ts +8 -0
- package/dist/rules/no-handler-suffix/create.js +71 -0
- package/dist/rules/no-handler-suffix/create.js.map +1 -0
- package/dist/rules/no-handler-suffix/index.d.ts +2 -0
- package/dist/rules/no-handler-suffix/index.js +22 -0
- package/dist/rules/no-handler-suffix/index.js.map +1 -0
- package/dist/rules/{no-handler-suffix.d.ts → no-handler-suffix/rule.d.ts} +2 -2
- package/dist/rules/no-handler-suffix/rule.js +14 -0
- package/dist/rules/no-handler-suffix/rule.js.map +1 -0
- package/dist/rules/no-objects-in-deps/config.d.ts +14 -0
- package/dist/rules/no-objects-in-deps/config.js +22 -0
- package/dist/rules/no-objects-in-deps/config.js.map +1 -0
- package/dist/rules/no-objects-in-deps/create.d.ts +6 -0
- package/dist/rules/no-objects-in-deps/create.js +124 -0
- package/dist/rules/no-objects-in-deps/create.js.map +1 -0
- package/dist/rules/no-objects-in-deps/index.d.ts +2 -0
- package/dist/rules/no-objects-in-deps/index.js +22 -0
- package/dist/rules/no-objects-in-deps/index.js.map +1 -0
- package/dist/rules/{no-objects-in-deps.d.ts → no-objects-in-deps/rule.d.ts} +2 -2
- package/dist/rules/no-objects-in-deps/rule.js +14 -0
- package/dist/rules/no-objects-in-deps/rule.js.map +1 -0
- package/dist/rules/params-naming-convention/config.d.ts +21 -0
- package/dist/rules/params-naming-convention/config.js +55 -0
- package/dist/rules/params-naming-convention/config.js.map +1 -0
- package/dist/rules/params-naming-convention/create.d.ts +6 -0
- package/dist/rules/params-naming-convention/create.js +49 -0
- package/dist/rules/params-naming-convention/create.js.map +1 -0
- package/dist/rules/params-naming-convention/index.d.ts +2 -0
- package/dist/rules/params-naming-convention/index.js +22 -0
- package/dist/rules/params-naming-convention/index.js.map +1 -0
- package/dist/rules/{prefer-react-fc.d.ts → params-naming-convention/rule.d.ts} +2 -2
- package/dist/rules/params-naming-convention/rule.js +14 -0
- package/dist/rules/params-naming-convention/rule.js.map +1 -0
- package/dist/{models/prefer-arrow-functions.model.d.ts → rules/prefer-arrow-functions/config.d.ts} +10 -0
- package/dist/rules/prefer-arrow-functions/config.js +67 -0
- package/dist/rules/prefer-arrow-functions/config.js.map +1 -0
- package/dist/rules/prefer-arrow-functions/create.d.ts +9 -0
- package/dist/rules/prefer-arrow-functions/create.js +150 -0
- package/dist/rules/prefer-arrow-functions/create.js.map +1 -0
- package/dist/rules/prefer-arrow-functions/index.d.ts +2 -0
- package/dist/rules/prefer-arrow-functions/index.js +22 -0
- package/dist/rules/prefer-arrow-functions/index.js.map +1 -0
- package/dist/rules/{restrict-function-usage.d.ts → prefer-arrow-functions/rule.d.ts} +2 -2
- package/dist/rules/prefer-arrow-functions/rule.js +14 -0
- package/dist/rules/prefer-arrow-functions/rule.js.map +1 -0
- package/dist/rules/prefer-export-under-component/config.d.ts +14 -0
- package/dist/rules/prefer-export-under-component/config.js +23 -0
- package/dist/rules/prefer-export-under-component/config.js.map +1 -0
- package/dist/rules/prefer-export-under-component/create.d.ts +8 -0
- package/dist/rules/prefer-export-under-component/create.js +99 -0
- package/dist/rules/prefer-export-under-component/create.js.map +1 -0
- package/dist/rules/prefer-export-under-component/index.d.ts +2 -0
- package/dist/rules/prefer-export-under-component/index.js +22 -0
- package/dist/rules/prefer-export-under-component/index.js.map +1 -0
- package/dist/rules/{prefer-react-with-hooks.d.ts → prefer-export-under-component/rule.d.ts} +2 -2
- package/dist/rules/prefer-export-under-component/rule.js +14 -0
- package/dist/rules/prefer-export-under-component/rule.js.map +1 -0
- package/dist/rules/prefer-react-fc/config.d.ts +19 -0
- package/dist/rules/prefer-react-fc/config.js +43 -0
- package/dist/rules/prefer-react-fc/config.js.map +1 -0
- package/dist/rules/prefer-react-fc/create.d.ts +8 -0
- package/dist/rules/prefer-react-fc/create.js +166 -0
- package/dist/rules/prefer-react-fc/create.js.map +1 -0
- package/dist/rules/prefer-react-fc/index.d.ts +2 -0
- package/dist/rules/prefer-react-fc/index.js +22 -0
- package/dist/rules/prefer-react-fc/index.js.map +1 -0
- package/dist/rules/{prefer-arrow-functions.d.ts → prefer-react-fc/rule.d.ts} +2 -2
- package/dist/rules/prefer-react-fc/rule.js +14 -0
- package/dist/rules/prefer-react-fc/rule.js.map +1 -0
- package/dist/rules/prefer-react-with-hooks/config.d.ts +15 -0
- package/dist/rules/prefer-react-with-hooks/config.js +25 -0
- package/dist/rules/prefer-react-with-hooks/config.js.map +1 -0
- package/dist/rules/prefer-react-with-hooks/create.d.ts +7 -0
- package/dist/rules/prefer-react-with-hooks/create.js +188 -0
- package/dist/rules/prefer-react-with-hooks/create.js.map +1 -0
- package/dist/rules/prefer-react-with-hooks/index.d.ts +2 -0
- package/dist/rules/prefer-react-with-hooks/index.js +22 -0
- package/dist/rules/prefer-react-with-hooks/index.js.map +1 -0
- package/dist/rules/{prefer-export-under-component.d.ts → prefer-react-with-hooks/rule.d.ts} +2 -2
- package/dist/rules/prefer-react-with-hooks/rule.js +14 -0
- package/dist/rules/prefer-react-with-hooks/rule.js.map +1 -0
- package/dist/rules/prefer-void-for-optional-param/config.d.ts +15 -0
- package/dist/rules/prefer-void-for-optional-param/config.js +25 -0
- package/dist/rules/prefer-void-for-optional-param/config.js.map +1 -0
- package/dist/rules/prefer-void-for-optional-param/create.d.ts +8 -0
- package/dist/rules/prefer-void-for-optional-param/create.js +188 -0
- package/dist/rules/prefer-void-for-optional-param/create.js.map +1 -0
- package/dist/rules/prefer-void-for-optional-param/index.d.ts +2 -0
- package/dist/rules/prefer-void-for-optional-param/index.js +22 -0
- package/dist/rules/prefer-void-for-optional-param/index.js.map +1 -0
- package/dist/rules/prefer-void-for-optional-param/rule.d.ts +5 -0
- package/dist/rules/prefer-void-for-optional-param/rule.js +14 -0
- package/dist/rules/prefer-void-for-optional-param/rule.js.map +1 -0
- package/dist/rules/restrict-console-methods/config.d.ts +18 -0
- package/dist/rules/restrict-console-methods/config.js +38 -0
- package/dist/rules/restrict-console-methods/config.js.map +1 -0
- package/dist/rules/restrict-console-methods/create.d.ts +6 -0
- package/dist/rules/restrict-console-methods/create.js +34 -0
- package/dist/rules/restrict-console-methods/create.js.map +1 -0
- package/dist/rules/restrict-console-methods/index.d.ts +2 -0
- package/dist/rules/restrict-console-methods/index.js +22 -0
- package/dist/rules/restrict-console-methods/index.js.map +1 -0
- package/dist/rules/restrict-console-methods/rule.d.ts +5 -0
- package/dist/rules/restrict-console-methods/rule.js +14 -0
- package/dist/rules/restrict-console-methods/rule.js.map +1 -0
- package/dist/rules/restrict-function-usage/config.d.ts +21 -0
- package/dist/rules/restrict-function-usage/config.js +62 -0
- package/dist/rules/restrict-function-usage/config.js.map +1 -0
- package/dist/rules/restrict-function-usage/create.d.ts +6 -0
- package/dist/rules/restrict-function-usage/create.js +76 -0
- package/dist/rules/restrict-function-usage/create.js.map +1 -0
- package/dist/rules/restrict-function-usage/index.d.ts +2 -0
- package/dist/rules/restrict-function-usage/index.js +22 -0
- package/dist/rules/restrict-function-usage/index.js.map +1 -0
- package/dist/rules/restrict-function-usage/rule.d.ts +5 -0
- package/dist/rules/restrict-function-usage/rule.js +14 -0
- package/dist/rules/restrict-function-usage/rule.js.map +1 -0
- package/dist/rules/restrict-imports/config.d.ts +22 -0
- package/dist/rules/restrict-imports/config.js +69 -0
- package/dist/rules/restrict-imports/config.js.map +1 -0
- package/dist/rules/restrict-imports/create.d.ts +6 -0
- package/dist/rules/restrict-imports/create.js +92 -0
- package/dist/rules/restrict-imports/create.js.map +1 -0
- package/dist/rules/restrict-imports/index.d.ts +2 -0
- package/dist/rules/restrict-imports/index.js +22 -0
- package/dist/rules/restrict-imports/index.js.map +1 -0
- package/dist/rules/restrict-imports/rule.d.ts +5 -0
- package/dist/rules/restrict-imports/rule.js +14 -0
- package/dist/rules/restrict-imports/rule.js.map +1 -0
- package/dist/utility/core.js.map +1 -1
- package/dist/utility/file-helpers.d.ts +6 -0
- package/dist/utility/file-helpers.js +32 -0
- package/dist/utility/file-helpers.js.map +1 -0
- package/dist/utility/function-helpers.d.ts +4 -4
- package/dist/utility/function-helpers.js +17 -15
- package/dist/utility/function-helpers.js.map +1 -1
- package/dist/utility/type-helpers.d.ts +4 -1
- package/dist/utility/type-helpers.js +6 -4
- package/dist/utility/type-helpers.js.map +1 -1
- package/package.json +75 -73
- package/dist/models/boolean-naming-convention.model.js +0 -11
- package/dist/models/boolean-naming-convention.model.js.map +0 -1
- package/dist/models/no-handler-suffix.model.d.ts +0 -4
- package/dist/models/no-handler-suffix.model.js +0 -8
- package/dist/models/no-handler-suffix.model.js.map +0 -1
- package/dist/models/no-objects-in-deps.model.d.ts +0 -4
- package/dist/models/no-objects-in-deps.model.js +0 -8
- package/dist/models/no-objects-in-deps.model.js.map +0 -1
- package/dist/models/params-naming-convention.model.d.ts +0 -11
- package/dist/models/params-naming-convention.model.js +0 -8
- package/dist/models/params-naming-convention.model.js.map +0 -1
- package/dist/models/prefer-arrow-functions.model.js +0 -10
- package/dist/models/prefer-arrow-functions.model.js.map +0 -1
- package/dist/models/prefer-export-under-component.model.d.ts +0 -4
- package/dist/models/prefer-export-under-component.model.js +0 -8
- package/dist/models/prefer-export-under-component.model.js.map +0 -1
- package/dist/models/prefer-react-fc.model.d.ts +0 -9
- package/dist/models/prefer-react-fc.model.js +0 -8
- package/dist/models/prefer-react-fc.model.js.map +0 -1
- package/dist/models/prefer-react-with-hooks.model.d.ts +0 -5
- package/dist/models/prefer-react-with-hooks.model.js +0 -9
- package/dist/models/prefer-react-with-hooks.model.js.map +0 -1
- package/dist/models/prefer-void-for-optional-param.model.d.ts +0 -5
- package/dist/models/prefer-void-for-optional-param.model.js +0 -9
- package/dist/models/prefer-void-for-optional-param.model.js.map +0 -1
- package/dist/models/restrict-console-methods.model.d.ts +0 -8
- package/dist/models/restrict-console-methods.model.js +0 -8
- package/dist/models/restrict-console-methods.model.js.map +0 -1
- package/dist/models/restrict-function-usage.model.d.ts +0 -11
- package/dist/models/restrict-function-usage.model.js +0 -8
- package/dist/models/restrict-function-usage.model.js.map +0 -1
- package/dist/models/restrict-imports.model.d.ts +0 -12
- package/dist/models/restrict-imports.model.js +0 -8
- package/dist/models/restrict-imports.model.js.map +0 -1
- package/dist/rules/boolean-naming-convention.d.ts +0 -5
- package/dist/rules/boolean-naming-convention.js +0 -379
- package/dist/rules/boolean-naming-convention.js.map +0 -1
- package/dist/rules/no-handler-suffix.js +0 -89
- package/dist/rules/no-handler-suffix.js.map +0 -1
- package/dist/rules/no-objects-in-deps.js +0 -90
- package/dist/rules/no-objects-in-deps.js.map +0 -1
- package/dist/rules/params-naming-convention.d.ts +0 -5
- package/dist/rules/params-naming-convention.js +0 -95
- package/dist/rules/params-naming-convention.js.map +0 -1
- package/dist/rules/prefer-arrow-functions.js +0 -208
- package/dist/rules/prefer-arrow-functions.js.map +0 -1
- package/dist/rules/prefer-export-under-component.js +0 -113
- package/dist/rules/prefer-export-under-component.js.map +0 -1
- package/dist/rules/prefer-react-fc.js +0 -204
- package/dist/rules/prefer-react-fc.js.map +0 -1
- package/dist/rules/prefer-react-with-hooks.js +0 -185
- package/dist/rules/prefer-react-with-hooks.js.map +0 -1
- package/dist/rules/prefer-void-for-optional-param.d.ts +0 -6
- package/dist/rules/prefer-void-for-optional-param.js +0 -188
- package/dist/rules/prefer-void-for-optional-param.js.map +0 -1
- package/dist/rules/restrict-console-methods.d.ts +0 -5
- package/dist/rules/restrict-console-methods.js +0 -66
- package/dist/rules/restrict-console-methods.js.map +0 -1
- package/dist/rules/restrict-function-usage.js +0 -121
- package/dist/rules/restrict-function-usage.js.map +0 -1
- package/dist/rules/restrict-imports.js +0 -135
- package/dist/rules/restrict-imports.js.map +0 -1
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.defaultOptions = exports.config = exports.Messages = exports.name = void 0;
|
|
4
|
+
exports.name = "prefer-arrow-functions";
|
|
5
|
+
var Messages;
|
|
6
|
+
(function (Messages) {
|
|
7
|
+
Messages["PREFER_ARROW_FUNCTION_EXPRESSION"] = "PREFER_ARROW_FUNCTION_EXPRESSION";
|
|
8
|
+
Messages["PREFER_ARROW_FUNCTIONS"] = "PREFER_ARROW_FUNCTIONS";
|
|
9
|
+
Messages["PREFER_ARROW_METHOD"] = "PREFER_ARROW_METHOD";
|
|
10
|
+
})(Messages || (exports.Messages = Messages = {}));
|
|
11
|
+
exports.config = {
|
|
12
|
+
docs: {
|
|
13
|
+
description: "Prefer arrow functions over function declarations and expressions",
|
|
14
|
+
recommended: true,
|
|
15
|
+
url: "https://github.com/NIMA-Enterprises/eslint-plugin-nima/blob/main/documentation/rules/prefer-arrow-functions.md",
|
|
16
|
+
},
|
|
17
|
+
fixable: "code",
|
|
18
|
+
messages: {
|
|
19
|
+
[Messages.PREFER_ARROW_FUNCTION_EXPRESSION]: "NIMA: Prefer arrow functions over function expressions.",
|
|
20
|
+
[Messages.PREFER_ARROW_FUNCTIONS]: "NIMA: Prefer arrow functions over function declarations.",
|
|
21
|
+
[Messages.PREFER_ARROW_METHOD]: "NIMA: Prefer arrow functions over method definitions.",
|
|
22
|
+
},
|
|
23
|
+
schema: [
|
|
24
|
+
{
|
|
25
|
+
additionalProperties: false,
|
|
26
|
+
properties: {
|
|
27
|
+
allowAsync: {
|
|
28
|
+
description: "Allow async functions (they can still be arrow functions)",
|
|
29
|
+
type: "boolean",
|
|
30
|
+
},
|
|
31
|
+
allowConstructors: {
|
|
32
|
+
description: "Allow constructor functions",
|
|
33
|
+
type: "boolean",
|
|
34
|
+
},
|
|
35
|
+
allowFunctionDeclarations: {
|
|
36
|
+
description: "Allow function declarations (function name() {})",
|
|
37
|
+
type: "boolean",
|
|
38
|
+
},
|
|
39
|
+
allowFunctionExpressions: {
|
|
40
|
+
description: "Allow function expressions (const name = function() {})",
|
|
41
|
+
type: "boolean",
|
|
42
|
+
},
|
|
43
|
+
allowGenerators: {
|
|
44
|
+
description: "Allow generator functions",
|
|
45
|
+
type: "boolean",
|
|
46
|
+
},
|
|
47
|
+
allowMethodDefinitions: {
|
|
48
|
+
description: "Allow method definitions in classes and objects",
|
|
49
|
+
type: "boolean",
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
type: "object",
|
|
53
|
+
},
|
|
54
|
+
],
|
|
55
|
+
type: "suggestion",
|
|
56
|
+
};
|
|
57
|
+
exports.defaultOptions = [
|
|
58
|
+
{
|
|
59
|
+
allowAsync: true,
|
|
60
|
+
allowConstructors: true,
|
|
61
|
+
allowFunctionDeclarations: false,
|
|
62
|
+
allowFunctionExpressions: false,
|
|
63
|
+
allowGenerators: true,
|
|
64
|
+
allowMethodDefinitions: false,
|
|
65
|
+
},
|
|
66
|
+
];
|
|
67
|
+
//# sourceMappingURL=config.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../../src/rules/prefer-arrow-functions/config.ts"],"names":[],"mappings":";;;AAEa,QAAA,IAAI,GAAG,wBAAwB,CAAC;AAE7C,IAAkB,QAIjB;AAJD,WAAkB,QAAQ;IACtB,iFAAqE,CAAA;IACrE,6DAAiD,CAAA;IACjD,uDAA2C,CAAA;AAC/C,CAAC,EAJiB,QAAQ,wBAAR,QAAQ,QAIzB;AAiBY,QAAA,MAAM,GAGiD;IAChE,IAAI,EAAE;QACF,WAAW,EACP,mEAAmE;QACvE,WAAW,EAAE,IAAI;QACjB,GAAG,EAAE,gHAAgH;KACxH;IACD,OAAO,EAAE,MAAM;IACf,QAAQ,EAAE;QACN,CAAC,QAAQ,CAAC,gCAAgC,CAAC,EACvC,yDAAyD;QAC7D,CAAC,QAAQ,CAAC,sBAAsB,CAAC,EAC7B,0DAA0D;QAC9D,CAAC,QAAQ,CAAC,mBAAmB,CAAC,EAC1B,uDAAuD;KAC9D;IACD,MAAM,EAAE;QACJ;YACI,oBAAoB,EAAE,KAAK;YAC3B,UAAU,EAAE;gBACR,UAAU,EAAE;oBACR,WAAW,EACP,2DAA2D;oBAC/D,IAAI,EAAE,SAAS;iBAClB;gBACD,iBAAiB,EAAE;oBACf,WAAW,EAAE,6BAA6B;oBAC1C,IAAI,EAAE,SAAS;iBAClB;gBACD,yBAAyB,EAAE;oBACvB,WAAW,EACP,kDAAkD;oBACtD,IAAI,EAAE,SAAS;iBAClB;gBACD,wBAAwB,EAAE;oBACtB,WAAW,EACP,yDAAyD;oBAC7D,IAAI,EAAE,SAAS;iBAClB;gBACD,eAAe,EAAE;oBACb,WAAW,EAAE,2BAA2B;oBACxC,IAAI,EAAE,SAAS;iBAClB;gBACD,sBAAsB,EAAE;oBACpB,WAAW,EACP,iDAAiD;oBACrD,IAAI,EAAE,SAAS;iBAClB;aACJ;YACD,IAAI,EAAE,QAAQ;SACjB;KACJ;IACD,IAAI,EAAE,YAAY;CACrB,CAAC;AAEW,QAAA,cAAc,GAAY;IACnC;QACI,UAAU,EAAE,IAAI;QAChB,iBAAiB,EAAE,IAAI;QACvB,yBAAyB,EAAE,KAAK;QAChC,wBAAwB,EAAE,KAAK;QAC/B,eAAe,EAAE,IAAI;QACrB,sBAAsB,EAAE,KAAK;KAChC;CACJ,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { type TSESTree } from "@typescript-eslint/utils";
|
|
2
|
+
import { RuleContext } from "@typescript-eslint/utils/ts-eslint";
|
|
3
|
+
import { Messages, type Options } from "./config";
|
|
4
|
+
export declare const create: (context: RuleContext<Messages, Options>, [options]: readonly Options[number][]) => {
|
|
5
|
+
FunctionDeclaration: (node: TSESTree.FunctionDeclaration) => void;
|
|
6
|
+
FunctionExpression: (node: TSESTree.FunctionExpression) => void;
|
|
7
|
+
MethodDefinition: (node: TSESTree.MethodDefinition) => void;
|
|
8
|
+
Property: (node: TSESTree.Property) => void;
|
|
9
|
+
};
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.create = void 0;
|
|
4
|
+
const utils_1 = require("@typescript-eslint/utils");
|
|
5
|
+
const config_1 = require("./config");
|
|
6
|
+
const create = (context, [options]) => {
|
|
7
|
+
const { allowAsync = true, allowConstructors = true, allowFunctionDeclarations = false, allowFunctionExpressions = false, allowGenerators = true, allowMethodDefinitions = false, } = options;
|
|
8
|
+
const sourceCode = context.sourceCode;
|
|
9
|
+
const shouldSkipFunction = (node) => {
|
|
10
|
+
if (allowConstructors &&
|
|
11
|
+
node.parent?.type === utils_1.AST_NODE_TYPES.MethodDefinition &&
|
|
12
|
+
node.parent.kind === "constructor") {
|
|
13
|
+
return true;
|
|
14
|
+
}
|
|
15
|
+
if (allowGenerators && node?.generator) {
|
|
16
|
+
return true;
|
|
17
|
+
}
|
|
18
|
+
if (allowAsync && node?.async) {
|
|
19
|
+
return true;
|
|
20
|
+
}
|
|
21
|
+
if (node.type === utils_1.AST_NODE_TYPES.TSEmptyBodyFunctionExpression) {
|
|
22
|
+
return true;
|
|
23
|
+
}
|
|
24
|
+
return false;
|
|
25
|
+
};
|
|
26
|
+
const generateArrowFunction = (node) => {
|
|
27
|
+
const asyncKeyword = node.async ? "async " : "";
|
|
28
|
+
const getParams = () => {
|
|
29
|
+
if (node.params.length === 0) {
|
|
30
|
+
return "()";
|
|
31
|
+
}
|
|
32
|
+
if (node.params.length === 1 &&
|
|
33
|
+
node.params[0].type === utils_1.AST_NODE_TYPES.Identifier &&
|
|
34
|
+
!node.params[0].typeAnnotation) {
|
|
35
|
+
return sourceCode.getText(node.params[0]);
|
|
36
|
+
}
|
|
37
|
+
return `(${node.params.map((p) => sourceCode.getText(p)).join(", ")})`;
|
|
38
|
+
};
|
|
39
|
+
const params = getParams();
|
|
40
|
+
const returnType = node.returnType
|
|
41
|
+
? `: ${sourceCode.getText(node.returnType.typeAnnotation)}`
|
|
42
|
+
: "";
|
|
43
|
+
const body = node.body ? sourceCode.getText(node.body) : "";
|
|
44
|
+
return `${asyncKeyword}${params}${returnType} => ${body}`;
|
|
45
|
+
};
|
|
46
|
+
return {
|
|
47
|
+
FunctionDeclaration: (node) => {
|
|
48
|
+
if (allowFunctionDeclarations || shouldSkipFunction(node)) {
|
|
49
|
+
return;
|
|
50
|
+
}
|
|
51
|
+
context.report({
|
|
52
|
+
fix: (fixer) => {
|
|
53
|
+
if (!node.id) {
|
|
54
|
+
return null;
|
|
55
|
+
}
|
|
56
|
+
const functionName = node.id.name;
|
|
57
|
+
const arrowFunction = generateArrowFunction(node);
|
|
58
|
+
let replacement;
|
|
59
|
+
if (node.parent?.type ===
|
|
60
|
+
utils_1.AST_NODE_TYPES.ExportDefaultDeclaration) {
|
|
61
|
+
const constDeclaration = `const ${functionName} = ${arrowFunction}`;
|
|
62
|
+
const exportDeclaration = `export default ${functionName}`;
|
|
63
|
+
replacement = `${constDeclaration};\n${exportDeclaration}`;
|
|
64
|
+
return fixer.replaceText(node.parent, replacement);
|
|
65
|
+
}
|
|
66
|
+
else if (node.parent?.type ===
|
|
67
|
+
utils_1.AST_NODE_TYPES.ExportNamedDeclaration) {
|
|
68
|
+
replacement = `export const ${functionName} = ${arrowFunction}`;
|
|
69
|
+
return fixer.replaceText(node.parent, replacement);
|
|
70
|
+
}
|
|
71
|
+
else {
|
|
72
|
+
replacement = `const ${functionName} = ${arrowFunction}`;
|
|
73
|
+
return fixer.replaceText(node, replacement);
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
messageId: config_1.Messages.PREFER_ARROW_FUNCTIONS,
|
|
77
|
+
node: node.id || node,
|
|
78
|
+
});
|
|
79
|
+
},
|
|
80
|
+
FunctionExpression: (node) => {
|
|
81
|
+
if ((node.parent?.type === utils_1.AST_NODE_TYPES.MethodDefinition ||
|
|
82
|
+
(node.parent?.type === utils_1.AST_NODE_TYPES.Property &&
|
|
83
|
+
(node.parent.method || !node.parent.method))) &&
|
|
84
|
+
allowMethodDefinitions) {
|
|
85
|
+
return;
|
|
86
|
+
}
|
|
87
|
+
if (node.parent?.type === utils_1.AST_NODE_TYPES.Property &&
|
|
88
|
+
node.parent.method) {
|
|
89
|
+
return;
|
|
90
|
+
}
|
|
91
|
+
if (allowFunctionExpressions || shouldSkipFunction(node)) {
|
|
92
|
+
return;
|
|
93
|
+
}
|
|
94
|
+
context.report({
|
|
95
|
+
fix: (fixer) => {
|
|
96
|
+
const arrowFunction = generateArrowFunction(node);
|
|
97
|
+
return fixer.replaceText(node, arrowFunction);
|
|
98
|
+
},
|
|
99
|
+
messageId: config_1.Messages.PREFER_ARROW_FUNCTION_EXPRESSION,
|
|
100
|
+
node,
|
|
101
|
+
});
|
|
102
|
+
},
|
|
103
|
+
MethodDefinition: (node) => {
|
|
104
|
+
if (allowMethodDefinitions ||
|
|
105
|
+
node.kind === "constructor" ||
|
|
106
|
+
node.kind === "get" ||
|
|
107
|
+
node.kind === "set") {
|
|
108
|
+
return;
|
|
109
|
+
}
|
|
110
|
+
if (node.value.type === utils_1.AST_NODE_TYPES.FunctionExpression &&
|
|
111
|
+
!shouldSkipFunction(node.value)) {
|
|
112
|
+
context.report({
|
|
113
|
+
fix: (fixer) => {
|
|
114
|
+
const key = sourceCode.getText(node.key);
|
|
115
|
+
const arrowFunction = generateArrowFunction(node.value);
|
|
116
|
+
const static_ = node.static ? "static " : "";
|
|
117
|
+
const replacement = `${static_}${key} = ${arrowFunction}`;
|
|
118
|
+
return fixer.replaceText(node, replacement);
|
|
119
|
+
},
|
|
120
|
+
messageId: config_1.Messages.PREFER_ARROW_METHOD,
|
|
121
|
+
node: node.key,
|
|
122
|
+
});
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
Property: (node) => {
|
|
126
|
+
if (allowMethodDefinitions ||
|
|
127
|
+
!node.method ||
|
|
128
|
+
node.kind === "get" ||
|
|
129
|
+
node.kind === "set" ||
|
|
130
|
+
node.value.type !== utils_1.AST_NODE_TYPES.FunctionExpression) {
|
|
131
|
+
return;
|
|
132
|
+
}
|
|
133
|
+
const functionNode = node.value;
|
|
134
|
+
if (!shouldSkipFunction(functionNode)) {
|
|
135
|
+
context.report({
|
|
136
|
+
fix: (fixer) => {
|
|
137
|
+
const key = sourceCode.getText(node.key);
|
|
138
|
+
const arrowFunction = generateArrowFunction(functionNode);
|
|
139
|
+
const replacement = `${key}: ${arrowFunction}`;
|
|
140
|
+
return fixer.replaceText(node, replacement);
|
|
141
|
+
},
|
|
142
|
+
messageId: config_1.Messages.PREFER_ARROW_METHOD,
|
|
143
|
+
node: node.key,
|
|
144
|
+
});
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
};
|
|
148
|
+
};
|
|
149
|
+
exports.create = create;
|
|
150
|
+
//# sourceMappingURL=create.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create.js","sourceRoot":"","sources":["../../../src/rules/prefer-arrow-functions/create.ts"],"names":[],"mappings":";;;AAAA,oDAAyE;AAGzE,qCAAkD;AAE3C,MAAM,MAAM,GAAG,CAClB,OAAuC,EACvC,CAAC,OAAO,CAA6B,EACvC,EAAE;IACA,MAAM,EACF,UAAU,GAAG,IAAI,EACjB,iBAAiB,GAAG,IAAI,EACxB,yBAAyB,GAAG,KAAK,EACjC,wBAAwB,GAAG,KAAK,EAChC,eAAe,GAAG,IAAI,EACtB,sBAAsB,GAAG,KAAK,GACjC,GAAG,OAAO,CAAC;IAEZ,MAAM,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC;IAEtC,MAAM,kBAAkB,GAAG,CAAC,IAA2B,EAAE,EAAE;QACvD,IACI,iBAAiB;YACjB,IAAI,CAAC,MAAM,EAAE,IAAI,KAAK,sBAAc,CAAC,gBAAgB;YACrD,IAAI,CAAC,MAAM,CAAC,IAAI,KAAK,aAAa,EACpC,CAAC;YACC,OAAO,IAAI,CAAC;QAChB,CAAC;QACD,IAAI,eAAe,IAAI,IAAI,EAAE,SAAS,EAAE,CAAC;YACrC,OAAO,IAAI,CAAC;QAChB,CAAC;QACD,IAAI,UAAU,IAAI,IAAI,EAAE,KAAK,EAAE,CAAC;YAC5B,OAAO,IAAI,CAAC;QAChB,CAAC;QACD,IAAI,IAAI,CAAC,IAAI,KAAK,sBAAc,CAAC,6BAA6B,EAAE,CAAC;YAC7D,OAAO,IAAI,CAAC;QAChB,CAAC;QACD,OAAO,KAAK,CAAC;IACjB,CAAC,CAAC;IAEF,MAAM,qBAAqB,GAAG,CAAC,IAA2B,EAAE,EAAE;QAC1D,MAAM,YAAY,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC;QAEhD,MAAM,SAAS,GAAG,GAAG,EAAE;YACnB,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;gBAC3B,OAAO,IAAI,CAAC;YAChB,CAAC;YAED,IACI,IAAI,CAAC,MAAM,CAAC,MAAM,KAAK,CAAC;gBACxB,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,KAAK,sBAAc,CAAC,UAAU;gBACjD,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,cAAc,EAChC,CAAC;gBACC,OAAO,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;YAC9C,CAAC;YAED,OAAO,IAAI,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC;QAC3E,CAAC,CAAC;QAEF,MAAM,MAAM,GAAG,SAAS,EAAE,CAAC;QAC3B,MAAM,UAAU,GAAG,IAAI,CAAC,UAAU;YAC9B,CAAC,CAAC,KAAK,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,EAAE;YAC3D,CAAC,CAAC,EAAE,CAAC;QAET,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QAC5D,OAAO,GAAG,YAAY,GAAG,MAAM,GAAG,UAAU,OAAO,IAAI,EAAE,CAAC;IAC9D,CAAC,CAAC;IAEF,OAAO;QACH,mBAAmB,EAAE,CAAC,IAAkC,EAAE,EAAE;YACxD,IAAI,yBAAyB,IAAI,kBAAkB,CAAC,IAAI,CAAC,EAAE,CAAC;gBACxD,OAAO;YACX,CAAC;YACD,OAAO,CAAC,MAAM,CAAC;gBACX,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE;oBACX,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC;wBACX,OAAO,IAAI,CAAC;oBAChB,CAAC;oBACD,MAAM,YAAY,GAAG,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC;oBAClC,MAAM,aAAa,GAAG,qBAAqB,CAAC,IAAI,CAAC,CAAC;oBAClD,IAAI,WAAW,CAAC;oBAChB,IACI,IAAI,CAAC,MAAM,EAAE,IAAI;wBACjB,sBAAc,CAAC,wBAAwB,EACzC,CAAC;wBACC,MAAM,gBAAgB,GAAG,SAAS,YAAY,MAAM,aAAa,EAAE,CAAC;wBACpE,MAAM,iBAAiB,GAAG,kBAAkB,YAAY,EAAE,CAAC;wBAC3D,WAAW,GAAG,GAAG,gBAAgB,MAAM,iBAAiB,EAAE,CAAC;wBAC3D,OAAO,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;oBACvD,CAAC;yBAAM,IACH,IAAI,CAAC,MAAM,EAAE,IAAI;wBACjB,sBAAc,CAAC,sBAAsB,EACvC,CAAC;wBACC,WAAW,GAAG,gBAAgB,YAAY,MAAM,aAAa,EAAE,CAAC;wBAChE,OAAO,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;oBACvD,CAAC;yBAAM,CAAC;wBACJ,WAAW,GAAG,SAAS,YAAY,MAAM,aAAa,EAAE,CAAC;wBACzD,OAAO,KAAK,CAAC,WAAW,CAAC,IAAI,EAAE,WAAW,CAAC,CAAC;oBAChD,CAAC;gBACL,CAAC;gBACD,SAAS,EAAE,iBAAQ,CAAC,sBAAsB;gBAC1C,IAAI,EAAE,IAAI,CAAC,EAAE,IAAI,IAAI;aACxB,CAAC,CAAC;QACP,CAAC;QAED,kBAAkB,EAAE,CAAC,IAAiC,EAAE,EAAE;YACtD,IACI,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,KAAK,sBAAc,CAAC,gBAAgB;gBAClD,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,KAAK,sBAAc,CAAC,QAAQ;oBAC1C,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC;gBACrD,sBAAsB,EACxB,CAAC;gBACC,OAAO;YACX,CAAC;YAED,IACI,IAAI,CAAC,MAAM,EAAE,IAAI,KAAK,sBAAc,CAAC,QAAQ;gBAC7C,IAAI,CAAC,MAAM,CAAC,MAAM,EACpB,CAAC;gBACC,OAAO;YACX,CAAC;YAED,IAAI,wBAAwB,IAAI,kBAAkB,CAAC,IAAI,CAAC,EAAE,CAAC;gBACvD,OAAO;YACX,CAAC;YAED,OAAO,CAAC,MAAM,CAAC;gBACX,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE;oBACX,MAAM,aAAa,GAAG,qBAAqB,CAAC,IAAI,CAAC,CAAC;oBAClD,OAAO,KAAK,CAAC,WAAW,CAAC,IAAI,EAAE,aAAa,CAAC,CAAC;gBAClD,CAAC;gBACD,SAAS,EAAE,iBAAQ,CAAC,gCAAgC;gBACpD,IAAI;aACP,CAAC,CAAC;QACP,CAAC;QAED,gBAAgB,EAAE,CAAC,IAA+B,EAAE,EAAE;YAClD,IACI,sBAAsB;gBACtB,IAAI,CAAC,IAAI,KAAK,aAAa;gBAC3B,IAAI,CAAC,IAAI,KAAK,KAAK;gBACnB,IAAI,CAAC,IAAI,KAAK,KAAK,EACrB,CAAC;gBACC,OAAO;YACX,CAAC;YACD,IACI,IAAI,CAAC,KAAK,CAAC,IAAI,KAAK,sBAAc,CAAC,kBAAkB;gBACrD,CAAC,kBAAkB,CAAC,IAAI,CAAC,KAAK,CAAC,EACjC,CAAC;gBACC,OAAO,CAAC,MAAM,CAAC;oBACX,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE;wBACX,MAAM,GAAG,GAAG,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;wBACzC,MAAM,aAAa,GAAG,qBAAqB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;wBACxD,MAAM,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC;wBAC7C,MAAM,WAAW,GAAG,GAAG,OAAO,GAAG,GAAG,MAAM,aAAa,EAAE,CAAC;wBAC1D,OAAO,KAAK,CAAC,WAAW,CAAC,IAAI,EAAE,WAAW,CAAC,CAAC;oBAChD,CAAC;oBACD,SAAS,EAAE,iBAAQ,CAAC,mBAAmB;oBACvC,IAAI,EAAE,IAAI,CAAC,GAAG;iBACjB,CAAC,CAAC;YACP,CAAC;QACL,CAAC;QAED,QAAQ,EAAE,CAAC,IAAuB,EAAE,EAAE;YAClC,IACI,sBAAsB;gBACtB,CAAC,IAAI,CAAC,MAAM;gBACZ,IAAI,CAAC,IAAI,KAAK,KAAK;gBACnB,IAAI,CAAC,IAAI,KAAK,KAAK;gBACnB,IAAI,CAAC,KAAK,CAAC,IAAI,KAAK,sBAAc,CAAC,kBAAkB,EACvD,CAAC;gBACC,OAAO;YACX,CAAC;YACD,MAAM,YAAY,GAAG,IAAI,CAAC,KAAK,CAAC;YAChC,IAAI,CAAC,kBAAkB,CAAC,YAAY,CAAC,EAAE,CAAC;gBACpC,OAAO,CAAC,MAAM,CAAC;oBACX,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE;wBACX,MAAM,GAAG,GAAG,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;wBACzC,MAAM,aAAa,GACf,qBAAqB,CAAC,YAAY,CAAC,CAAC;wBACxC,MAAM,WAAW,GAAG,GAAG,GAAG,KAAK,aAAa,EAAE,CAAC;wBAC/C,OAAO,KAAK,CAAC,WAAW,CAAC,IAAI,EAAE,WAAW,CAAC,CAAC;oBAChD,CAAC;oBACD,SAAS,EAAE,iBAAQ,CAAC,mBAAmB;oBACvC,IAAI,EAAE,IAAI,CAAC,GAAG;iBACjB,CAAC,CAAC;YACP,CAAC;QACL,CAAC;KACJ,CAAC;AACN,CAAC,CAAC;AAxLW,QAAA,MAAM,UAwLjB"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
exports.Messages = exports.config = void 0;
|
|
18
|
+
var config_1 = require("./config");
|
|
19
|
+
Object.defineProperty(exports, "config", { enumerable: true, get: function () { return config_1.config; } });
|
|
20
|
+
Object.defineProperty(exports, "Messages", { enumerable: true, get: function () { return config_1.Messages; } });
|
|
21
|
+
__exportStar(require("./rule"), exports);
|
|
22
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/rules/prefer-arrow-functions/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,mCAA4C;AAAnC,gGAAA,MAAM,OAAA;AAAE,kGAAA,QAAQ,OAAA;AACzB,yCAAuB"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Messages, Options } from "
|
|
2
|
-
export
|
|
1
|
+
import { Messages, name, type Options } from "./config";
|
|
2
|
+
export { name };
|
|
3
3
|
export declare const rule: import("@typescript-eslint/utils/ts-eslint").RuleModule<Messages, Options, {
|
|
4
4
|
recommended: boolean;
|
|
5
5
|
}, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.rule = exports.name = void 0;
|
|
4
|
+
const core_1 = require("../../utility/core");
|
|
5
|
+
const config_1 = require("./config");
|
|
6
|
+
Object.defineProperty(exports, "name", { enumerable: true, get: function () { return config_1.name; } });
|
|
7
|
+
const create_1 = require("./create");
|
|
8
|
+
exports.rule = (0, core_1.createRule)({
|
|
9
|
+
create: create_1.create,
|
|
10
|
+
defaultOptions: config_1.defaultOptions,
|
|
11
|
+
meta: config_1.config,
|
|
12
|
+
name: config_1.name,
|
|
13
|
+
});
|
|
14
|
+
//# sourceMappingURL=rule.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rule.js","sourceRoot":"","sources":["../../../src/rules/prefer-arrow-functions/rule.ts"],"names":[],"mappings":";;;AAAA,wCAA2C;AAE3C,qCAAgF;AAGvE,qFAHkC,aAAI,OAGlC;AAFb,qCAAkC;AAIrB,QAAA,IAAI,GAAG,IAAA,iBAAU,EAAoB;IAC9C,MAAM,EAAN,eAAM;IACN,cAAc,EAAd,uBAAc;IACd,IAAI,EAAE,eAAM;IACZ,IAAI,EAAJ,aAAI;CACP,CAAC,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { RuleModule } from "@typescript-eslint/utils/ts-eslint";
|
|
2
|
+
export declare const name = "prefer-export-under-component";
|
|
3
|
+
export declare const enum Messages {
|
|
4
|
+
EXPORT_BELOW_COMPONENT = "EXPORT_BELOW_COMPONENT"
|
|
5
|
+
}
|
|
6
|
+
export type Options = [];
|
|
7
|
+
type ExtendedPluginProperties = {
|
|
8
|
+
recommended: boolean;
|
|
9
|
+
};
|
|
10
|
+
export declare const config: {
|
|
11
|
+
docs: ExtendedPluginProperties & RuleModule<Messages, Options>["meta"]["docs"];
|
|
12
|
+
} & Omit<RuleModule<Messages, Options>["meta"], "defaultOptions">;
|
|
13
|
+
export declare const defaultOptions: Options;
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.defaultOptions = exports.config = exports.Messages = exports.name = void 0;
|
|
4
|
+
exports.name = "prefer-export-under-component";
|
|
5
|
+
var Messages;
|
|
6
|
+
(function (Messages) {
|
|
7
|
+
Messages["EXPORT_BELOW_COMPONENT"] = "EXPORT_BELOW_COMPONENT";
|
|
8
|
+
})(Messages || (exports.Messages = Messages = {}));
|
|
9
|
+
exports.config = {
|
|
10
|
+
docs: {
|
|
11
|
+
description: "Enforce separate declaration and export for React components",
|
|
12
|
+
recommended: true,
|
|
13
|
+
url: "https://github.com/NIMA-Enterprises/eslint-plugin-nima/blob/main/documentation/rules/prefer-export-under-component.md",
|
|
14
|
+
},
|
|
15
|
+
fixable: "code",
|
|
16
|
+
messages: {
|
|
17
|
+
[Messages.EXPORT_BELOW_COMPONENT]: "NIMA: Declare React component '{{ fnName }}' separately from its export statement",
|
|
18
|
+
},
|
|
19
|
+
schema: [],
|
|
20
|
+
type: "problem",
|
|
21
|
+
};
|
|
22
|
+
exports.defaultOptions = [];
|
|
23
|
+
//# sourceMappingURL=config.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../../src/rules/prefer-export-under-component/config.ts"],"names":[],"mappings":";;;AAEa,QAAA,IAAI,GAAG,+BAA+B,CAAC;AAEpD,IAAkB,QAEjB;AAFD,WAAkB,QAAQ;IACtB,6DAAiD,CAAA;AACrD,CAAC,EAFiB,QAAQ,wBAAR,QAAQ,QAEzB;AAQY,QAAA,MAAM,GAGiD;IAChE,IAAI,EAAE;QACF,WAAW,EACP,8DAA8D;QAClE,WAAW,EAAE,IAAI;QACjB,GAAG,EAAE,uHAAuH;KAC/H;IACD,OAAO,EAAE,MAAM;IACf,QAAQ,EAAE;QACN,CAAC,QAAQ,CAAC,sBAAsB,CAAC,EAC7B,mFAAmF;KAC1F;IACD,MAAM,EAAE,EAAE;IACV,IAAI,EAAE,SAAS;CAClB,CAAC;AAEW,QAAA,cAAc,GAAY,EAAE,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { type TSESTree } from "@typescript-eslint/utils";
|
|
2
|
+
import { RuleContext } from "@typescript-eslint/utils/ts-eslint";
|
|
3
|
+
import { Messages, type Options } from "./config";
|
|
4
|
+
export declare const create: (context: RuleContext<Messages, Options>) => {
|
|
5
|
+
ExportDefaultDeclaration: (node: TSESTree.ExportDefaultDeclaration) => void;
|
|
6
|
+
ExportNamedDeclaration: (node: TSESTree.ExportNamedDeclaration) => void;
|
|
7
|
+
FunctionDeclaration: (node: TSESTree.FunctionDeclaration) => void;
|
|
8
|
+
};
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.create = void 0;
|
|
4
|
+
const utils_1 = require("@typescript-eslint/utils");
|
|
5
|
+
const function_helpers_1 = require("../../utility/function-helpers");
|
|
6
|
+
const config_1 = require("./config");
|
|
7
|
+
const create = (context) => {
|
|
8
|
+
return {
|
|
9
|
+
ExportDefaultDeclaration: (node) => {
|
|
10
|
+
if (node.declaration.type !== utils_1.AST_NODE_TYPES.FunctionDeclaration) {
|
|
11
|
+
return;
|
|
12
|
+
}
|
|
13
|
+
const fnName = node.declaration.id?.name;
|
|
14
|
+
if (fnName &&
|
|
15
|
+
(0, function_helpers_1.isComponentFunction)(fnName) &&
|
|
16
|
+
(0, function_helpers_1.isReactReturn)(node.declaration)) {
|
|
17
|
+
context.report({
|
|
18
|
+
data: {
|
|
19
|
+
fnName,
|
|
20
|
+
},
|
|
21
|
+
fix: (fixer) => {
|
|
22
|
+
const sourceCode = context.sourceCode;
|
|
23
|
+
const text = sourceCode.getText(node);
|
|
24
|
+
const newText = text.replace(/^export\s+default\s+/, "");
|
|
25
|
+
return [
|
|
26
|
+
fixer.replaceText(node, newText),
|
|
27
|
+
fixer.insertTextAfter(node, `\n\nexport { ${fnName} };`),
|
|
28
|
+
];
|
|
29
|
+
},
|
|
30
|
+
messageId: config_1.Messages.EXPORT_BELOW_COMPONENT,
|
|
31
|
+
node,
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
ExportNamedDeclaration: (node) => {
|
|
36
|
+
if (!node.declaration) {
|
|
37
|
+
return;
|
|
38
|
+
}
|
|
39
|
+
if (node.declaration.type === utils_1.AST_NODE_TYPES.VariableDeclaration) {
|
|
40
|
+
const declarator = node.declaration.declarations[0];
|
|
41
|
+
if (!declarator.init) {
|
|
42
|
+
return;
|
|
43
|
+
}
|
|
44
|
+
const fnNode = declarator.init;
|
|
45
|
+
if (fnNode.type !== utils_1.AST_NODE_TYPES.ArrowFunctionExpression &&
|
|
46
|
+
fnNode.type !== utils_1.AST_NODE_TYPES.FunctionExpression) {
|
|
47
|
+
return;
|
|
48
|
+
}
|
|
49
|
+
const fnName = (0, function_helpers_1.getFunctionName)(fnNode);
|
|
50
|
+
if (fnName &&
|
|
51
|
+
(0, function_helpers_1.isComponentFunction)(fnName) &&
|
|
52
|
+
(0, function_helpers_1.isReactReturn)(fnNode)) {
|
|
53
|
+
context.report({
|
|
54
|
+
data: {
|
|
55
|
+
fnName,
|
|
56
|
+
},
|
|
57
|
+
fix: (fixer) => {
|
|
58
|
+
const sourceCode = context.sourceCode;
|
|
59
|
+
const text = sourceCode.getText(node);
|
|
60
|
+
const newText = text.replace(/^export\s+/, "");
|
|
61
|
+
return [
|
|
62
|
+
fixer.replaceText(node, newText),
|
|
63
|
+
fixer.insertTextAfter(node, `\n\nexport { ${fnName} };`),
|
|
64
|
+
];
|
|
65
|
+
},
|
|
66
|
+
messageId: config_1.Messages.EXPORT_BELOW_COMPONENT,
|
|
67
|
+
node,
|
|
68
|
+
});
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
FunctionDeclaration: (node) => {
|
|
73
|
+
if (node.parent?.type !== utils_1.AST_NODE_TYPES.ExportNamedDeclaration) {
|
|
74
|
+
return;
|
|
75
|
+
}
|
|
76
|
+
const fnName = (0, function_helpers_1.getFunctionName)(node);
|
|
77
|
+
if (fnName && (0, function_helpers_1.isComponentFunction)(fnName) && (0, function_helpers_1.isReactReturn)(node)) {
|
|
78
|
+
context.report({
|
|
79
|
+
data: {
|
|
80
|
+
fnName,
|
|
81
|
+
},
|
|
82
|
+
fix: (fixer) => {
|
|
83
|
+
const sourceCode = context.sourceCode;
|
|
84
|
+
const text = sourceCode.getText(node.parent);
|
|
85
|
+
const newText = text.replace(/^export\s+/, "");
|
|
86
|
+
return [
|
|
87
|
+
fixer.replaceText(node.parent, newText),
|
|
88
|
+
fixer.insertTextAfter(node.parent, `\n\nexport { ${fnName} };`),
|
|
89
|
+
];
|
|
90
|
+
},
|
|
91
|
+
messageId: config_1.Messages.EXPORT_BELOW_COMPONENT,
|
|
92
|
+
node: node.parent,
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
exports.create = create;
|
|
99
|
+
//# sourceMappingURL=create.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create.js","sourceRoot":"","sources":["../../../src/rules/prefer-export-under-component/create.ts"],"names":[],"mappings":";;;AAAA,oDAAyE;AAEzE,gEAImC;AAEnC,qCAAkD;AAE3C,MAAM,MAAM,GAAG,CAAC,OAAuC,EAAE,EAAE;IAC9D,OAAO;QACH,wBAAwB,EAAE,CAAC,IAAuC,EAAE,EAAE;YAClE,IAAI,IAAI,CAAC,WAAW,CAAC,IAAI,KAAK,sBAAc,CAAC,mBAAmB,EAAE,CAAC;gBAC/D,OAAO;YACX,CAAC;YAED,MAAM,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,EAAE,EAAE,IAAI,CAAC;YACzC,IACI,MAAM;gBACN,IAAA,sCAAmB,EAAC,MAAM,CAAC;gBAC3B,IAAA,gCAAa,EAAC,IAAI,CAAC,WAAW,CAAC,EACjC,CAAC;gBACC,OAAO,CAAC,MAAM,CAAC;oBACX,IAAI,EAAE;wBACF,MAAM;qBACT;oBACD,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE;wBACX,MAAM,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC;wBACtC,MAAM,IAAI,GAAG,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;wBACtC,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CACxB,sBAAsB,EACtB,EAAE,CACL,CAAC;wBAEF,OAAO;4BACH,KAAK,CAAC,WAAW,CAAC,IAAI,EAAE,OAAO,CAAC;4BAChC,KAAK,CAAC,eAAe,CACjB,IAAI,EACJ,gBAAgB,MAAM,KAAK,CAC9B;yBACJ,CAAC;oBACN,CAAC;oBACD,SAAS,EAAE,iBAAQ,CAAC,sBAAsB;oBAC1C,IAAI;iBACP,CAAC,CAAC;YACP,CAAC;QACL,CAAC;QAED,sBAAsB,EAAE,CAAC,IAAqC,EAAE,EAAE;YAC9D,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC;gBACpB,OAAO;YACX,CAAC;YAED,IAAI,IAAI,CAAC,WAAW,CAAC,IAAI,KAAK,sBAAc,CAAC,mBAAmB,EAAE,CAAC;gBAC/D,MAAM,UAAU,GAAG,IAAI,CAAC,WAAW,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;gBACpD,IAAI,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC;oBACnB,OAAO;gBACX,CAAC;gBAED,MAAM,MAAM,GAAG,UAAU,CAAC,IAAI,CAAC;gBAC/B,IACI,MAAM,CAAC,IAAI,KAAK,sBAAc,CAAC,uBAAuB;oBACtD,MAAM,CAAC,IAAI,KAAK,sBAAc,CAAC,kBAAkB,EACnD,CAAC;oBACC,OAAO;gBACX,CAAC;gBAED,MAAM,MAAM,GAAG,IAAA,kCAAe,EAAC,MAAM,CAAC,CAAC;gBACvC,IACI,MAAM;oBACN,IAAA,sCAAmB,EAAC,MAAM,CAAC;oBAC3B,IAAA,gCAAa,EAAC,MAAM,CAAC,EACvB,CAAC;oBACC,OAAO,CAAC,MAAM,CAAC;wBACX,IAAI,EAAE;4BACF,MAAM;yBACT;wBACD,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE;4BACX,MAAM,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC;4BACtC,MAAM,IAAI,GAAG,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;4BACtC,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,YAAY,EAAE,EAAE,CAAC,CAAC;4BAE/C,OAAO;gCACH,KAAK,CAAC,WAAW,CAAC,IAAI,EAAE,OAAO,CAAC;gCAChC,KAAK,CAAC,eAAe,CACjB,IAAI,EACJ,gBAAgB,MAAM,KAAK,CAC9B;6BACJ,CAAC;wBACN,CAAC;wBACD,SAAS,EAAE,iBAAQ,CAAC,sBAAsB;wBAC1C,IAAI;qBACP,CAAC,CAAC;gBACP,CAAC;YACL,CAAC;QACL,CAAC;QAED,mBAAmB,EAAE,CAAC,IAAkC,EAAE,EAAE;YACxD,IAAI,IAAI,CAAC,MAAM,EAAE,IAAI,KAAK,sBAAc,CAAC,sBAAsB,EAAE,CAAC;gBAC9D,OAAO;YACX,CAAC;YAED,MAAM,MAAM,GAAG,IAAA,kCAAe,EAAC,IAAI,CAAC,CAAC;YACrC,IAAI,MAAM,IAAI,IAAA,sCAAmB,EAAC,MAAM,CAAC,IAAI,IAAA,gCAAa,EAAC,IAAI,CAAC,EAAE,CAAC;gBAC/D,OAAO,CAAC,MAAM,CAAC;oBACX,IAAI,EAAE;wBACF,MAAM;qBACT;oBACD,GAAG,EAAE,CAAC,KAAK,EAAE,EAAE;wBACX,MAAM,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC;wBACtC,MAAM,IAAI,GAAG,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;wBAC7C,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,YAAY,EAAE,EAAE,CAAC,CAAC;wBAE/C,OAAO;4BACH,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC;4BACvC,KAAK,CAAC,eAAe,CACjB,IAAI,CAAC,MAAM,EACX,gBAAgB,MAAM,KAAK,CAC9B;yBACJ,CAAC;oBACN,CAAC;oBACD,SAAS,EAAE,iBAAQ,CAAC,sBAAsB;oBAC1C,IAAI,EAAE,IAAI,CAAC,MAAM;iBACpB,CAAC,CAAC;YACP,CAAC;QACL,CAAC;KACJ,CAAC;AACN,CAAC,CAAC;AAtHW,QAAA,MAAM,UAsHjB"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
exports.Messages = exports.config = void 0;
|
|
18
|
+
var config_1 = require("./config");
|
|
19
|
+
Object.defineProperty(exports, "config", { enumerable: true, get: function () { return config_1.config; } });
|
|
20
|
+
Object.defineProperty(exports, "Messages", { enumerable: true, get: function () { return config_1.Messages; } });
|
|
21
|
+
__exportStar(require("./rule"), exports);
|
|
22
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/rules/prefer-export-under-component/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,mCAA4C;AAAnC,gGAAA,MAAM,OAAA;AAAE,kGAAA,QAAQ,OAAA;AACzB,yCAAuB"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Messages } from "
|
|
2
|
-
export
|
|
1
|
+
import { Messages, name } from "./config";
|
|
2
|
+
export { name };
|
|
3
3
|
export declare const rule: import("@typescript-eslint/utils/ts-eslint").RuleModule<Messages, [], {
|
|
4
4
|
recommended: boolean;
|
|
5
5
|
}, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.rule = exports.name = void 0;
|
|
4
|
+
const core_1 = require("../../utility/core");
|
|
5
|
+
const config_1 = require("./config");
|
|
6
|
+
Object.defineProperty(exports, "name", { enumerable: true, get: function () { return config_1.name; } });
|
|
7
|
+
const create_1 = require("./create");
|
|
8
|
+
exports.rule = (0, core_1.createRule)({
|
|
9
|
+
create: create_1.create,
|
|
10
|
+
defaultOptions: config_1.defaultOptions,
|
|
11
|
+
meta: config_1.config,
|
|
12
|
+
name: config_1.name,
|
|
13
|
+
});
|
|
14
|
+
//# sourceMappingURL=rule.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rule.js","sourceRoot":"","sources":["../../../src/rules/prefer-export-under-component/rule.ts"],"names":[],"mappings":";;;AAAA,wCAA2C;AAE3C,qCAAgF;AAGvE,qFAHkC,aAAI,OAGlC;AAFb,qCAAkC;AAIrB,QAAA,IAAI,GAAG,IAAA,iBAAU,EAAoB;IAC9C,MAAM,EAAN,eAAM;IACN,cAAc,EAAd,uBAAc;IACd,IAAI,EAAE,eAAM;IACZ,IAAI,EAAJ,aAAI;CACP,CAAC,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { RuleModule } from "@typescript-eslint/utils/ts-eslint";
|
|
2
|
+
export declare const name = "prefer-react-fc";
|
|
3
|
+
export declare const enum Messages {
|
|
4
|
+
REQUIRE_REACT_FC = "REQUIRE_REACT_FC"
|
|
5
|
+
}
|
|
6
|
+
export type Options = [
|
|
7
|
+
Partial<{
|
|
8
|
+
allowArrowFunctions: boolean;
|
|
9
|
+
allowFunctionDeclarations: boolean;
|
|
10
|
+
}>
|
|
11
|
+
];
|
|
12
|
+
type ExtendedPluginProperties = {
|
|
13
|
+
recommended: boolean;
|
|
14
|
+
};
|
|
15
|
+
export declare const config: {
|
|
16
|
+
docs: ExtendedPluginProperties & RuleModule<Messages, Options>["meta"]["docs"];
|
|
17
|
+
} & Omit<RuleModule<Messages, Options>["meta"], "defaultOptions">;
|
|
18
|
+
export declare const defaultOptions: Options;
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.defaultOptions = exports.config = exports.Messages = exports.name = void 0;
|
|
4
|
+
exports.name = "prefer-react-fc";
|
|
5
|
+
var Messages;
|
|
6
|
+
(function (Messages) {
|
|
7
|
+
Messages["REQUIRE_REACT_FC"] = "REQUIRE_REACT_FC";
|
|
8
|
+
})(Messages || (exports.Messages = Messages = {}));
|
|
9
|
+
exports.config = {
|
|
10
|
+
docs: {
|
|
11
|
+
description: "Enforce React.FC type annotation for React component functions",
|
|
12
|
+
recommended: true,
|
|
13
|
+
url: "https://github.com/NIMA-Enterprises/eslint-plugin-nima/blob/main/documentation/rules/prefer-react-fc.md",
|
|
14
|
+
},
|
|
15
|
+
fixable: "code",
|
|
16
|
+
messages: {
|
|
17
|
+
[Messages.REQUIRE_REACT_FC]: "NIMA: Component functions must use React.FC type annotation.",
|
|
18
|
+
},
|
|
19
|
+
schema: [
|
|
20
|
+
{
|
|
21
|
+
additionalProperties: false,
|
|
22
|
+
properties: {
|
|
23
|
+
allowArrowFunctions: {
|
|
24
|
+
description: "Allow arrow function components",
|
|
25
|
+
type: "boolean",
|
|
26
|
+
},
|
|
27
|
+
allowFunctionDeclarations: {
|
|
28
|
+
description: "Allow function declaration components",
|
|
29
|
+
type: "boolean",
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
type: "object",
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
type: "problem",
|
|
36
|
+
};
|
|
37
|
+
exports.defaultOptions = [
|
|
38
|
+
{
|
|
39
|
+
allowArrowFunctions: true,
|
|
40
|
+
allowFunctionDeclarations: true,
|
|
41
|
+
},
|
|
42
|
+
];
|
|
43
|
+
//# sourceMappingURL=config.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../../src/rules/prefer-react-fc/config.ts"],"names":[],"mappings":";;;AAEa,QAAA,IAAI,GAAG,iBAAiB,CAAC;AAEtC,IAAkB,QAEjB;AAFD,WAAkB,QAAQ;IACtB,iDAAqC,CAAA;AACzC,CAAC,EAFiB,QAAQ,wBAAR,QAAQ,QAEzB;AAaY,QAAA,MAAM,GAGiD;IAChE,IAAI,EAAE;QACF,WAAW,EACP,gEAAgE;QACpE,WAAW,EAAE,IAAI;QACjB,GAAG,EAAE,yGAAyG;KACjH;IACD,OAAO,EAAE,MAAM;IACf,QAAQ,EAAE;QACN,CAAC,QAAQ,CAAC,gBAAgB,CAAC,EACvB,8DAA8D;KACrE;IACD,MAAM,EAAE;QACJ;YACI,oBAAoB,EAAE,KAAK;YAC3B,UAAU,EAAE;gBACR,mBAAmB,EAAE;oBACjB,WAAW,EAAE,iCAAiC;oBAC9C,IAAI,EAAE,SAAS;iBAClB;gBACD,yBAAyB,EAAE;oBACvB,WAAW,EAAE,uCAAuC;oBACpD,IAAI,EAAE,SAAS;iBAClB;aACJ;YACD,IAAI,EAAE,QAAQ;SACjB;KACJ;IACD,IAAI,EAAE,SAAS;CAClB,CAAC;AAEW,QAAA,cAAc,GAAY;IACnC;QACI,mBAAmB,EAAE,IAAI;QACzB,yBAAyB,EAAE,IAAI;KAClC;CACJ,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { TSESTree } from "@typescript-eslint/utils";
|
|
2
|
+
import { RuleContext } from "@typescript-eslint/utils/ts-eslint";
|
|
3
|
+
import { Messages, type Options } from "./config";
|
|
4
|
+
export declare const create: (context: RuleContext<Messages, Options>) => {
|
|
5
|
+
ArrowFunctionExpression: (node: TSESTree.ArrowFunctionExpression) => void;
|
|
6
|
+
FunctionDeclaration: (node: TSESTree.FunctionDeclaration) => void;
|
|
7
|
+
FunctionExpression: (node: TSESTree.FunctionExpression) => void;
|
|
8
|
+
};
|