
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
eslint-config-bamboo
Advanced tools
# Install Dependencies
$ yarn add -D eslint typescript @typescript-eslint/parser @typescript-eslint/eslint-plugin
# Install eslint-config-bamboo
$ yarn add -D eslint-config-bamboo
Add the ESLint config to your package.json
:
{
"name": "my-project",
// ...
"eslintConfig": {
"extends": "bamboo"
}
}
Or to eslintrc.js
or eslintrc.json
:
{
"extends": "bamboo"
}
Create tsconfig.eslint.json
next to the eslint config file, for example with content:
{
"extends": "./tsconfig.json",
"include": ["src", "test"]
}
You can use eslint-config-bamboo
's
tsconfig.json
by extending it in yours:
{
"extends": "eslint-config-bamboo"
}
All of its properties are defaulted for bleeding-edge TypeScript options, you may extend this to include your own configuration options as well.
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature
eslint-config-bamboo © kyranet, released under the MIT License. Authored and maintained by kyranet.
FAQs
TypeScript ESLint shareable config
We found that eslint-config-bamboo demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.