
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
eslint-config-kyt
Advanced tools
$ yarn add --dev --exact @babel/core @babel/eslint-parser @babel/eslint-plugin eslint prettier \
eslint-config-airbnb eslint-config-prettier eslint-plugin-import \
eslint-plugin-jest eslint-plugin-jest-formatting \
eslint-plugin-json eslint-plugin-jsx-a11y eslint-plugin-prettier \
eslint-plugin-react eslint-plugin-react-hooks eslint-config-kyt
# or
$ npm i --save-dev --save-exact @babel/core @babel/eslint-parser @babel/eslint-plugin eslint prettier \
eslint-config-airbnb eslint-config-prettier eslint-plugin-import \
eslint-plugin-jest eslint-plugin-jest-formatting \
eslint-plugin-json eslint-plugin-jsx-a11y eslint-plugin-prettier \
eslint-plugin-react eslint-plugin-react-hooks eslint-config-kyt
Add to the extends
section of your ESLint configuration:
.eslintrc(.json)
:
{
"extends": ["kyt"],
"rules": {}
}
.eslintrc.js
:
module.exports = {
extends: ['kyt'],
// shorthand: ['kyt']
rules: {
/* If you must, override rules here :P */
},
};
To add a subset of rules, you can specify one of the following:
module.exports = {
extends: [
// extends airbnb/base and contains all of our custom rules
'kyt/base',
// adds `jest` and `jest-formatting` plugins
'kyt/jest',
// adds Airbnb's React rules before our custom rules
'kyt/react',
// all rules
'kyt',
],
};
yarn eslint . --fix
Or add to your package.json
:
{
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix"
}
}
To automatically format your code based on these rules during development, install a package for your IDE. We recommend that you install and configure ESLint with one of the following editors:
ESLint
Prettier
Code > Preferences
true
:"prettier.eslintIntegration": true,
"editor.formatOnSave": true
Preferences > Install
linter
linter-eslint
prettier-atom
. In the prettier-atom
settings, check the ESLint Integration
checkbox.FAQs
ESLint configuration for kyt projects.
The npm package eslint-config-kyt receives a total of 4,666 weekly downloads. As such, eslint-config-kyt popularity was classified as popular.
We found that eslint-config-kyt demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.