
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@newrelic/eslint-plugin-newrelic
Advanced tools
@newrelic/eslint-plugin-newrelicThis package provides New Relic's Eslint configuration as an extensible shared config.
This eslint configuration is in early development for use in new open source projects.
Table of Contents generated with DocToc
npm install --save-dev @newrelic/eslint-plugin-newrelic.eslintrc.js in the root of your project and configure it to extend from the base eslint config and addons that are right for your project. For example, if your project uses react, jest, and prettier, the file should look something like this. See eslint's configuration documentation for more details.module.exports = {
extends: [
'plugin:@newrelic/eslint-plugin-newrelic/react',
'plugin:@newrelic/eslint-plugin-newrelic/jest',
'plugin:@newrelic/eslint-plugin-newrelic/prettier'
]
}
.js in the current directory: npx eslint . --ext .js. See eslint's cli documentation for more details.--fix flag. For example: npx eslint . --ext .js --fixscripts in your package.json. A simple example in your package.json might look something like this."scripts": {
"lint": "eslint . --ext .js",
"lint:fix": "npm run lint -- --fix"
}
Base eslint configurations cover the majority of linting configuration for common JavaScript development use cases. You SHOULD pick one of these.
Addon eslint configurations provide additional linting configuration for optional tools/libraries/etc. that you may use on top of a base use case (e.g. a specific testing library). You may use as many of these as is appropriate for your project.
react base config.--fix option with eslint..
├── /lib/ # Plugin source code
│ ├── /config/ # Shared configs go here
│ │ ├── /rules/ # Rules for shared configs
│ │ │ └── *.js # Config specific to chunk of related eslint rules.
│ │ ├── core.js # Core shared eslint config.
│ │ └── *.js # Shared eslint config.
│ └── /index.js # Main file - exports plugin configuration
├── /node_modules/ # 3rd-party libraries and utilities
├── package.json # The list of 3rd party libraries and utilities
└── README.md # Info about the project
FAQs
Eslint plugin for New Relic.
The npm package @newrelic/eslint-plugin-newrelic receives a total of 768 weekly downloads. As such, @newrelic/eslint-plugin-newrelic popularity was classified as not popular.
We found that @newrelic/eslint-plugin-newrelic 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.