
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@code-shaper/eslint-config
Advanced tools
This package publishes 4 shared ESLint configurations:
@code-shaper/eslint-config
: Default configuration pointing to
@code-shaper/eslint-config-lenient
@code-shaper/eslint-config-lenient
: A lenient configuration for code bases
that don't follow very opinionated coding conventions@code-shaper/eslint-config-strict
: A strict configuration for code bases
that follow very opinionated coding conventions@code-shaper/eslint-config/strict-react
: The strict configuration +
additional rules for React.npm install -D @code-shaper/eslint-config
Then modify your .eslintrc.js
to extend one of the above configurations, e.g.
module.exports = {
root: true,
env: { node: true },
extends: ['@code-shaper/eslint-config/strict-react'],
};
Add the following dependencies to your package.json
:
{
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.*",
"eslint": "^8.*",
"eslint-config-prettier": "^9.*",
"eslint-import-resolver-typescript": "^3.*",
"eslint-plugin-eslint-comments": "^3.*",
"eslint-plugin-import": "^2.*",
"eslint-plugin-jest": "^28.*",
"eslint-plugin-jest-dom": "^5.*",
"eslint-plugin-jsx-a11y": "^6.*",
"eslint-plugin-only-error": "^1.*",
"eslint-plugin-promise": "^7.*",
"eslint-plugin-react": "^7.*",
"eslint-plugin-react-hooks": "^4.*",
"eslint-plugin-regexp": "^2.*",
"eslint-plugin-testing-library": "^6.*"
}
}
Note: If you are using
eslint-config-next
version 14, you may have to downgrade@typescript-eslint/eslint-plugin
to version 7.eslint-config-next
does not support@typescript-eslint/eslint-plugin
version 8 yet.
This config pulls in the following eslint rules/plugins. In addition to these plugins, there are a few customizations that have been made to select individual rules. These customizations and rules are clearly marked in the source code.
Applies the following rules to all JavaScript and TypeScript files:
Applies the following rules to all Typescript files:
Applies the following rules to all JavaScript and TypeScript files:
Applies the following rules to all JavaScript and TypeScript files:
Applies the following rules to all JavaScript and TypeScript files:
Applies the following rules to all JavaScript and TypeScript files:
Applies the following rules to all TypeScript files:
Applies the following rules to all TypeScript files:
Applies the following rules to all TypeScript files:
Applies the following rules to all JavaScript and TypeScript test files:
Applies the following rules to all JavaScript and TypeScript test files:
Applies the following rules to all JavaScript and TypeScript test files:
Applies the eslint-config-prettier plugin to disable all rules that would be covered by or would conflict with prettier. It is recommended to run prettier separately, after running eslint.
Applies the only-error plugin to treat all lint warnings as errors.
FAQs
Code Shaper ESLint configuration
We found that @code-shaper/eslint-config demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.