eslint-plugin-function-rule 0.0.0 → 0.0.2

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.
@@ -0,0 +1,28 @@
1
+ import * as _eslint_core0 from "@eslint/core";
2
+ import { RuleDefinition } from "@eslint/core";
3
+
4
+ //#region index.d.ts
5
+ declare function functionRule(create: RuleDefinition["create"]): {
6
+ rules: {
7
+ "function-rule": {
8
+ meta: {
9
+ fixable: string;
10
+ hasSuggestions: boolean;
11
+ };
12
+ create: (context: _eslint_core0.RuleContext<{
13
+ LangOptions: _eslint_core0.LanguageOptions;
14
+ Code: _eslint_core0.SourceCode<{
15
+ LangOptions: _eslint_core0.LanguageOptions;
16
+ RootNode: unknown;
17
+ SyntaxElementWithLoc: unknown;
18
+ ConfigNode: unknown;
19
+ }>;
20
+ RuleOptions: unknown[];
21
+ Node: unknown;
22
+ MessageIds: string;
23
+ }>) => _eslint_core0.RuleVisitor;
24
+ };
25
+ };
26
+ };
27
+ //#endregion
28
+ export { functionRule as default };
package/dist/index.js ADDED
@@ -0,0 +1,13 @@
1
+ //#region index.ts
2
+ function functionRule(create) {
3
+ return { rules: { "function-rule": {
4
+ meta: {
5
+ fixable: "code",
6
+ hasSuggestions: true
7
+ },
8
+ create
9
+ } } };
10
+ }
11
+
12
+ //#endregion
13
+ export { functionRule as default };
package/package.json CHANGED
@@ -1,12 +1,29 @@
1
1
  {
2
2
  "name": "eslint-plugin-function-rule",
3
- "version": "0.0.0",
4
- "module": "index.ts",
3
+ "version": "0.0.2",
4
+ "license": "MIT",
5
+ "sideEffects": false,
5
6
  "type": "module",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "import": "./dist/index.js"
11
+ }
12
+ },
13
+ "files": [
14
+ "dist",
15
+ "package.json"
16
+ ],
17
+ "dependencies": {
18
+ "@eslint/core": "^0.17.0"
19
+ },
6
20
  "devDependencies": {
7
- "@types/bun": "latest"
21
+ "tsdown": "^0.16.1"
8
22
  },
9
23
  "peerDependencies": {
10
24
  "typescript": "^5"
25
+ },
26
+ "scripts": {
27
+ "build": "tsdown"
11
28
  }
12
29
  }
package/bun.lock DELETED
@@ -1,30 +0,0 @@
1
- {
2
- "lockfileVersion": 1,
3
- "configVersion": 1,
4
- "workspaces": {
5
- "": {
6
- "name": "eslint-plugin-function-rule",
7
- "devDependencies": {
8
- "@types/bun": "latest",
9
- },
10
- "peerDependencies": {
11
- "typescript": "^5",
12
- },
13
- },
14
- },
15
- "packages": {
16
- "@types/bun": ["@types/bun@1.3.2", "", { "dependencies": { "bun-types": "1.3.2" } }, "sha512-t15P7k5UIgHKkxwnMNkJbWlh/617rkDGEdSsDbu+qNHTaz9SKf7aC8fiIlUdD5RPpH6GEkP0cK7WlvmrEBRtWg=="],
17
-
18
- "@types/node": ["@types/node@24.10.0", "", { "dependencies": { "undici-types": "~7.16.0" } }, "sha512-qzQZRBqkFsYyaSWXuEHc2WR9c0a0CXwiE5FWUvn7ZM+vdy1uZLfCunD38UzhuB7YN/J11ndbDBcTmOdxJo9Q7A=="],
19
-
20
- "@types/react": ["@types/react@19.2.2", "", { "dependencies": { "csstype": "^3.0.2" } }, "sha512-6mDvHUFSjyT2B2yeNx2nUgMxh9LtOWvkhIU3uePn2I2oyNymUAX1NIsdgviM4CH+JSrp2D2hsMvJOkxY+0wNRA=="],
21
-
22
- "bun-types": ["bun-types@1.3.2", "", { "dependencies": { "@types/node": "*" }, "peerDependencies": { "@types/react": "^19" } }, "sha512-i/Gln4tbzKNuxP70OWhJRZz1MRfvqExowP7U6JKoI8cntFrtxg7RJK3jvz7wQW54UuvNC8tbKHHri5fy74FVqg=="],
23
-
24
- "csstype": ["csstype@3.1.3", "", {}, "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="],
25
-
26
- "typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="],
27
-
28
- "undici-types": ["undici-types@7.16.0", "", {}, "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw=="],
29
- }
30
- }
package/index.ts DELETED
@@ -1 +0,0 @@
1
- console.log("Hello via Bun!");
package/tsconfig.json DELETED
@@ -1,29 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- // Environment setup & latest features
4
- "lib": ["ESNext"],
5
- "target": "ESNext",
6
- "module": "Preserve",
7
- "moduleDetection": "force",
8
- "jsx": "react-jsx",
9
- "allowJs": true,
10
-
11
- // Bundler mode
12
- "moduleResolution": "bundler",
13
- "allowImportingTsExtensions": true,
14
- "verbatimModuleSyntax": true,
15
- "noEmit": true,
16
-
17
- // Best practices
18
- "strict": true,
19
- "skipLibCheck": true,
20
- "noFallthroughCasesInSwitch": true,
21
- "noUncheckedIndexedAccess": true,
22
- "noImplicitOverride": true,
23
-
24
- // Some stricter flags (disabled by default)
25
- "noUnusedLocals": false,
26
- "noUnusedParameters": false,
27
- "noPropertyAccessFromIndexSignature": false
28
- }
29
- }