
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.
@condor-labs/eslint-config
Advanced tools
This module provides the standard ESLint configuration for every project in Condor Labs
This module defines ESLint rules to analyze the code in our projects.
See the official ESLint documentation here.
To use the library you just need to follow these steps:
npm i @condor-labs/eslint-config
├── Example Proyect
├── node_modules
├── src
├── package-lock.json
├── package.json
└── .eslintrc.js
For JavaScript projects:
module.exports = { extends: ['@condor-labs/eslint-config/configJS'] };
For TypeScript projects:
module.exports = { extends: ['@condor-labs/eslint-config/configTS'] };
For JavaScript projects:
const RULES = {
OFF: "off",
ERROR: "error",
WARN: "warn",
};
module.exports = {
env: {
browser: true,
commonjs: true,
es6: true,
node: true,
jest: true,
},
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:jsx-a11y/recommended",
"prettier"
],
settings: {
react: {
version: "detect",
},
},
parser: "babel-eslint",
parserOptions: {
ecmaVersion: 8,
ecmaFeatures: {
jsx: true,
experimentalObjectRestSpread: true,
},
sourceType: "module",
},
globals: {
MyGlobal: true,
},
rules: {
"no-console": RULES.WARN,
"no-template-curly-in-string": RULES.WARN,
"no-alert": RULES.ERROR,
"no-eq-null": RULES.ERROR,
"no-eval": RULES.ERROR,
"no-implied-eval": RULES.ERROR,
"no-iterator": RULES.ERROR,
"no-lone-blocks": RULES.ERROR,
"no-loop-func": RULES.ERROR,
"no-param-reassign": RULES.ERROR,
"no-proto": RULES.ERROR,
"no-return-assign": RULES.ERROR,
"no-script-url": RULES.ERROR,
"no-self-compare": RULES.ERROR,
"no-unused-expressions": RULES.ERROR,
"no-useless-concat": RULES.ERROR,
"no-undefined": RULES.ERROR,
curly: RULES.ERROR,
eqeqeq: RULES.ERROR,
"no-else-return": RULES.ERROR,
"no-useless-return": RULES.ERROR,
"no-duplicate-imports": RULES.ERROR,
"no-var": RULES.ERROR,
"prefer-const": RULES.ERROR,
"prefer-spread": RULES.WARN,
"prefer-template": RULES.ERROR,
"no-await-in-loop": RULES.WARN,
"no-unreachable-loop": RULES.WARN,
},
};
For TypeScript projects:
const RULES = {
OFF: "off",
ERROR: "error",
WARN: "warn",
};
module.exports = {
env: {
browser: true,
commonjs: true,
es6: true,
node: true,
jest: true,
},
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:jsx-a11y/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
],
settings: {
react: {
version: "detect",
},
},
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: 8,
ecmaFeatures: {
jsx: true,
experimentalObjectRestSpread: true,
},
sourceType: "module",
},
globals: {
MyGlobal: true,
},
rules: {
"no-console": RULES.WARN,
"no-template-curly-in-string": RULES.WARN,
"no-alert": RULES.ERROR,
"no-eq-null": RULES.ERROR,
"no-eval": RULES.ERROR,
"no-implied-eval": RULES.ERROR,
"no-iterator": RULES.ERROR,
"no-lone-blocks": RULES.ERROR,
"no-loop-func": RULES.ERROR,
"no-param-reassign": RULES.ERROR,
"no-proto": RULES.ERROR,
"no-return-assign": RULES.ERROR,
"no-script-url": RULES.ERROR,
"no-self-compare": RULES.ERROR,
"no-unused-expressions": RULES.ERROR,
"no-useless-concat": RULES.ERROR,
"no-undefined": RULES.ERROR,
curly: RULES.ERROR,
eqeqeq: RULES.ERROR,
"no-else-return": RULES.ERROR,
"no-useless-return": RULES.ERROR,
"no-duplicate-imports": RULES.ERROR,
"no-var": RULES.ERROR,
"prefer-const": RULES.ERROR,
"prefer-spread": RULES.WARN,
"prefer-template": RULES.ERROR,
"no-await-in-loop": RULES.WARN,
"no-unreachable-loop": RULES.WARN
},
};
You will need to update the package.json
file placed in the root folder.
identify the property version
and increase the right number in plus one.
npm login
[Enter username]
[Enter password]
[Enter email]
If all is ok the console will show you something like this : Logged in as USERNAME on https://registry.npmjs.org/.
npm publish --access public
Ref: https://docs.npmjs.com/getting-started/publishing-npm-packages
Note: you will need to have a NPM account, if you don't have one create one here: https://www.npmjs.com/signup
The original authors and current lead maintainers of this module is the @condor-labs development team.
More about Condorlabs Here.
FAQs
This module provides the standard ESLint configuration for every project in Condor Labs
The npm package @condor-labs/eslint-config receives a total of 24 weekly downloads. As such, @condor-labs/eslint-config popularity was classified as not popular.
We found that @condor-labs/eslint-config demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
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.