The compliance-portal app still carried the per-workspace ESLint scaffold that the rest of the monorepo dropped when linting was centralized into the root eslint.config.mjs. It defined its own local config, lint script, and lint-only devDeps, and was not covered by the root lint script, so it was never linted. Remove the local eslint.config.mjs, the lint script, and the eslint/@probo/eslint-config devDeps, then add the app to the root appDirs so the shared ts, react, and relay rule sets apply to it. Replace the explicit per-directory list in the root lint script with a bare `eslint .`, which the root config was already designed for via its globalIgnores. Ignore pkg/** so the vendored minified JS under the Go tree is not linted. Signed-off-by: Émile Ré <emile@probo.com>
50 lines
1.1 KiB
JSON
50 lines
1.1 KiB
JSON
{
|
|
"name": "probo",
|
|
"description": "Probo monorepo containing applications and shared packages",
|
|
"engines": {
|
|
"node": "^24.0.0",
|
|
"npm": "^11.8.0"
|
|
},
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*",
|
|
"examples/*"
|
|
],
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"dev": "turbo run dev",
|
|
"lint": "eslint . --concurrency auto && npm -w @probo/n8n-nodes-probo run lint",
|
|
"check": "turbo run check",
|
|
"relay": "relay-compiler"
|
|
},
|
|
"devDependencies": {
|
|
"@probo/eslint-config": "1.0.0",
|
|
"eslint": "^10.5.0",
|
|
"relay-compiler": "^21.0.1",
|
|
"turbo": "^2.9.14"
|
|
},
|
|
"overrides": {
|
|
"minimatch@9": "^9.0.9",
|
|
"handlebars": "4.7.9",
|
|
"@langchain/classic": "^1.0.27",
|
|
"@langchain/community": "^1.1.25",
|
|
"lodash": "^4.18.1",
|
|
"uuid": "^14.0.0",
|
|
"form-data": "^4.0.6",
|
|
"js-yaml": "^4.2.0"
|
|
},
|
|
"allowScripts": {
|
|
"esbuild": true,
|
|
"fsevents": true,
|
|
"unrs-resolver": true,
|
|
"core-js": false,
|
|
"isolated-vm": false,
|
|
"eslint-plugin-n8n-nodes-base": false
|
|
},
|
|
"license": "MIT",
|
|
"packageManager": "npm@11.8.0",
|
|
"dependencies": {
|
|
"react-dom": "^19.2.7"
|
|
}
|
|
}
|