Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
eslint-config-vamp
Advanced tools
This package includes ESLint configuration files, this configuration files only include rules to prevent environment problems and conflicts with other rules.
Currently, there is 2 configurations:
javascript
- the default one that includes ESLint rules onlytypescript
- includes typescript/eslint rules onlynpm i -D eslint-config-vamp
The javascript configuration requires only eslint
package to be installed.
.eslintrc.json
{
"extends": [
"vamp/javascript"
]
}
Example of advanced configuration with javascript
:
Packages required:
eslint
eslint-config-prettier
.eslintrc.json
{
"extends": [
"eslint:recommended",
"vamp/javascript",
"prettier"
]
}
The typescript configuration require those packages in order to work:
eslint
@typescript-eslint/eslint-plugin
@typescript-eslint/parser
.eslintrc.json
{
"extends": [
"vamp/javascript",
"vamp/typescript"
]
}
Example of advanced configuration with typescript
:
Packages required:
eslint
@typescript-eslint/eslint-plugin
@typescript-eslint/parser
prettier
.eslintrc.json
{
"extends": [
"eslint:recommended",
"vamp/javascript",
"plugin:@typescript-eslint/recommended",
"vamp/typescript",
"prettier"
]
}
All the rules considered as best practices but some of them can make to your existing projects problems, so those rules can be disabled easily with the rules object:
{
"rules": {
"id-length": "off",
"max-classes-per-file": "off",
"max-depth": "off",
"max-nested-callbacks": "off",
"max-params": "off"
}
}
FAQs
ESLint config for vampires 🩸
We found that eslint-config-vamp 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.