@flint.fyi/react 0.0.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/README.md ADDED
@@ -0,0 +1,6 @@
1
+ <h1 align="center"><code>@flint.fyi/react</code></h1>
2
+
3
+ <p align="center">
4
+ [Experimental] A Flint plugin for React code.
5
+ ❤️‍🔥
6
+ </p>
package/lib/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ import { react } from "./plugin.js";
2
+ export { react };
package/lib/index.js ADDED
@@ -0,0 +1,3 @@
1
+ import { react } from "./plugin.js";
2
+
3
+ export { react };
@@ -0,0 +1,7 @@
1
+ import * as _flint_fyi_core0 from "@flint.fyi/core";
2
+
3
+ //#region src/plugin.d.ts
4
+ declare const react: _flint_fyi_core0.Plugin<_flint_fyi_core0.RuleAbout, string | undefined, []>;
5
+ //#endregion
6
+ export { react };
7
+ //# sourceMappingURL=plugin.d.ts.map
package/lib/plugin.js ADDED
@@ -0,0 +1,11 @@
1
+ import { createPlugin } from "@flint.fyi/core";
2
+
3
+ //#region src/plugin.ts
4
+ const react = createPlugin({
5
+ name: "React",
6
+ rules: []
7
+ });
8
+
9
+ //#endregion
10
+ export { react };
11
+ //# sourceMappingURL=plugin.js.map
package/lib/react.d.ts ADDED
@@ -0,0 +1,7 @@
1
+ import * as _flint_fyi_core0 from "@flint.fyi/core";
2
+
3
+ //#region src/react.d.ts
4
+ declare const react: _flint_fyi_core0.Plugin<_flint_fyi_core0.RuleAbout, string | undefined, []>;
5
+ //#endregion
6
+ export { react };
7
+ //# sourceMappingURL=react.d.ts.map
package/lib/react.js ADDED
@@ -0,0 +1,11 @@
1
+ import { createPlugin } from "@flint.fyi/core";
2
+
3
+ //#region src/react.ts
4
+ const react = createPlugin({
5
+ name: "React",
6
+ rules: []
7
+ });
8
+
9
+ //#endregion
10
+ export { react };
11
+ //# sourceMappingURL=react.js.map
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@flint.fyi/react",
3
+ "version": "0.0.0",
4
+ "description": "[Experimental] A Flint plugin for React code.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/flint-fyi/flint.git",
8
+ "directory": "packages/react"
9
+ },
10
+ "license": "MIT",
11
+ "author": {
12
+ "name": "JoshuaKGoldberg",
13
+ "email": "npm@joshuakgoldberg.com"
14
+ },
15
+ "sideEffects": false,
16
+ "type": "module",
17
+ "exports": {
18
+ ".": {
19
+ "@flint.fyi/source": "./src/index.ts",
20
+ "default": "./lib/index.js"
21
+ }
22
+ },
23
+ "files": [
24
+ "lib/",
25
+ "!lib/**/*.map"
26
+ ],
27
+ "scripts": {
28
+ "test": "vitest --typecheck --project react"
29
+ },
30
+ "dependencies": {
31
+ "@flint.fyi/core": "workspace:^",
32
+ "typescript": "^5.9.3"
33
+ },
34
+ "devDependencies": {
35
+ "tsdown": "0.19.0-beta.2"
36
+ },
37
+ "engines": {
38
+ "node": ">=24.0.0"
39
+ },
40
+ "publishConfig": {
41
+ "access": "public",
42
+ "exports": {
43
+ ".": "./lib/index.js"
44
+ }
45
+ }
46
+ }