@samitouri / QOS-React / commits / 6019ef0a43

[healthcheck] New package for checking violations

This package will be used to check for violations of the rules of react and other heuristics to determine the health of a codebase. The health of a codebase gives an expectation of how easy it will be onboard on to the compiler. ghstack-source-id: b52fc4e44f704e0544f15066d8905825a256dc4a Pull Request resolved: https://github.com/facebook/react-forget/pull/2884

Sathya Gunsasekaran committed Apr 23, 2024 at 12:28 UTC 6019ef0a43d115d85ddff13a20dd1b84008a7c0f
1 file changed +17
compiler/packages/health-check/package.json new
+17
@@ -0,0 +1,17 @@
1 +{
2 + "name": "healthcheck",
3 + "version": "0.0.0",
4 + "description": "Health check script to test violations of the rules of react.",
5 + "scripts": {
6 + "build": "rimraf dist && tsc --build",
7 + "test": "echo 'no tests'"
8 + },
9 + "dependencies": {
10 + },
11 + "devDependencies": {
12 + },
13 + "engines": {
14 + "node": "^14.17.0 || ^16.0.0 || >= 18.0.0"
15 + },
16 + "license": "MIT"
17 +}