
Research
/Security News
Laravel Lang Compromised with RCE Backdoor Across 700+ Versions
Laravel Lang packages were compromised with an RCE backdoor across hundreds of versions, exposing cloud, CI/CD, and developer secrets.
@zohodesk/eslint-plugin-e2e
Advanced tools
- A custom ESLint plugin to enforce proper E2E/UAT file placement by disallowing files directly under a root-level `uat/` directory. - Ensures UAT artifacts live under the canonical `test_slices/uat/` path to keep end-to-end code isolated and maintainable
uat/ directory.test_slices/uat/ path to keep end-to-end code isolated and maintainable.npm install --save-dev @zohodesk/eslint-plugin-e2e
test_slices/uat/uat/ folder (e.g., src/uat/, packages/foo/uat/)no-uat-outside-test-slices — Disallow files directly inside a root-level uat/ directory; require test_slices/uat/ instead.You can enable the rule either with the new ESLint flat config or the legacy .eslintrc.* config.
eslint.config.js)// eslint.config.js
import e2e from "@zohodesk/eslint-plugin-e2e";
export default [
{
plugins: { e2e },
rules: {
// error/warn/off
"e2e/no-uat-outside-test-slices": "error",
},
},
];
.eslintrc.*){
"plugins": ["@zohodesk/e2e"],
"rules": {
"@zohodesk/e2e/no-uat-outside-test-slices": "error"
}
}
no-uat-outside-test-slicesuat/ directory outside the standardized test_slices/uat/ location.Move your changes inside test_slices/uat directoryAllowed paths
project-root/test_slices/uat/login.spec.js
project-root/test_slices/uat/smoke/basic.flow.test.js
Disallowed paths (will report)
project-root/uat/login.spec.js
packages/my-app/uat/smoke.test.js
src/uat/flows/purchase.test.ts
test_slices/uat/** so the rule can validate your files.ISC © Durai Sankar
FAQs
- A custom ESLint plugin to enforce proper E2E/UAT file placement by disallowing files directly under a root-level `uat/` directory. - Ensures UAT artifacts live under the canonical `test_slices/uat/` path to keep end-to-end code isolated and maintainable
We found that @zohodesk/eslint-plugin-e2e demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 54 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Laravel Lang packages were compromised with an RCE backdoor across hundreds of versions, exposing cloud, CI/CD, and developer secrets.

Security News
Socket found a malicious postinstall hook across 700+ GitHub repos, including PHP packages on Packagist and Node.js project repositories.

Security News
Vibe coding at scale is reshaping how packages are created, contributed, and selected across the software supply chain