
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
@commonground/eslint-config-cra-standard-prettier
Advanced tools
Shared ESLint config for all Common Ground projects using Create React App.
Common Ground shared ESLint config for all our React projects. Designed to be used with create-react-app.
Not using Create React App? See our the Common Ground base ESLint rules
Note: if you use a NPM version <7.x you should install the peer dependencies manually.
npm install --save-dev --save-exact \
@commonground/eslint-config-cra-standard-prettier
Then override the eslintConfig
setting in package.json
:
"eslintConfig": {
"extends": "@commonground/eslint-config-cra-standard-prettier"
}
Alternatively, you can remove the eslintConfig
entry and create a .eslintrc.js
file, with:
module.exports = {
extends: ['@commonground/eslint-config-cra-standard-prettier']
}
This last method also opens the possibility to extend the rules, but in order to maintain a generic developer experience in all our projects, we recommend against this.
Add the following extension:
Then create the following file in the frontend project directory: .vscode/settings.json
(it's .gitignored) containing:
{
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
You may define this file at a higher level as well, but then make sure you add this to the settings.json:
{
"eslint.workingDirectories": [
"./ui-directory"
]
}
See CONTRIBUTING
FAQs
Shared ESLint config for all Common Ground projects using Create React App.
The npm package @commonground/eslint-config-cra-standard-prettier receives a total of 0 weekly downloads. As such, @commonground/eslint-config-cra-standard-prettier popularity was classified as not popular.
We found that @commonground/eslint-config-cra-standard-prettier demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.