Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
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,061 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
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.