Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@amidostacks/eslint-config
Advanced tools
Shared ESLint config to guide a consistent code style across front end development in (and outside!) Amido.
Our default export contains all of our ESLint rules. The configuration was built based on other open source configuration. To run and use with your project, we must install peer dependencies.
npm install --save-dev @amidostacks/eslint-config
to save as a
dev dependencynpx install-peerdeps --dev @amidostacks/eslint-config
After installing, simply add a .eslintrc
file the following to your project
root (at the same level as package.json
):
{
"extends": ["@amidostacks/eslint-config"]
}
You will also need to add a .eslintignore
file to ensure that eslint ignores the relevant glob patterns. Please ensure that you configure this for your project, e.g. if your outdir is out/
rather than dist/
you will
node_modules/
dist/
docs/
coverage/
__mocks__/
__tests__/
**/*.d.ts
In your package.json
add a script to run linting:
"scripts": {
"lint": "node_modules/.bin/eslint . -f codeframe"
}
For information on how to version and publish changes to this package, please see Publishing Packages.
We are using the eslint-plugin-security
plugin to help idendity potential
security hotspots. See
Node Security for more
information.
FAQs
Shared linting config from amido stacks
The npm package @amidostacks/eslint-config receives a total of 55 weekly downloads. As such, @amidostacks/eslint-config popularity was classified as not popular.
We found that @amidostacks/eslint-config demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.