
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.
eslint-config-digital-scientists
Advanced tools
An ESLint Shareable Config for ECMAScript 2015+, React (and React Native), and Redux projects at Digital Scientists.
This config offers rules that are intended to help you write better code. It does this by
It's recommended that you install linting/formatting engines, configs, and their peer dependencies locally to a project and tracked in source control. The rules and config parameters can change over time and may cause inconsistencies across projects if everyone on your team is relying on their own globally installed version.
Install config and peer dependencies:
npm install --save-dev --save-exact \
eslint \
eslint-config-digital-scientists \
babel-eslint
But you may also install it them globally if you'd like them to be your default linting setup when working on a project without any linting system installed locally.
npm install -g \
eslint \
eslint-config-digital-scientists \
babel-eslint
Add a .eslintrc
file to the root folder of your project and make sure it's tracked in source control.
Add the following lines to the .eslintrc
:
{
"extends": "digital-scientists",
"root": true
}
Do the same as above, but just put the .eslintrc
file in your $HOME directory.
Note:
extends
attribute, the eslint-config-
portion of the config name is assumed by ESLint.root
attribute prevents ESLint from merging local rules with any global configs you may have installed.For the best developer experience, it's recommended to install and activate an ESLint extension/plugin for your editor to provide immediate visual feedback about linting issues.
Some recommended ESLint plugins are:
Prettier and ESLint can work together, but need to be configured so they don't conflict with each other.
eslint-config-digital-scientists
handles this configuration for you, so you don't need to worry about it.
All you need to do is:
prettier
# locally in your project as a devDependency
npm install --save-dev prettier
# or globally, if you're into that kind of thing
npm install -g prettier
.prettierrc
config file to the root directory of your project (that's how our config can detect that it needs to play nice with Prettier).prettierrc
file contains valid JSON, even if it's just {}
. Better yet, adopt the settings below:{
"arrowParens": "always",
"bracketSpacing": false,
"jsxBracketSameLine": false,
"printWidth": 80,
"singleQuote": false,
"semi": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"proseWrap": "always"
}
Once you've done that, Prettier and ESLint should be a great team with no conflicts.
For an especially frictionless development experience, you should install a Prettier formatting plugin for your editor and set it to format on save.
Here are links for plugin for some of the most popular editors:
.prettierrc
file after your ESLint plugin loads the eslint-config-digital-scientists
. If this happens. finish editing the .prettierrc
, and then restart/refresh your editor so that the ESLint plugin can reload everything.This package supports rules from ESLint, eslint-plugin-import, eslint-plugin-react, eslint-plugin-react-native, eslint-plugin-react-redux, and eslint-plugin-redux-saga.
You can override the rules defined in our config by simply applying rules in your .eslintrc
file. For example:
{
"extends": "digital-scientists",
"rules": {
"semi": [1, "always"]
}
}
This turns on enforcing the use of semicolons, a rule which is silenced by default in the current version of the eslint-config-digital-scientists
package.
The ESLint linting system is a popular one for its support of ES6 syntax, pluggable rules, automatic rule names in warning messages, and shareable / extendable config files.
Because it defaults to supporting multiple environments (e.g. Node, browsers, Jasmine, Mocha, etc.) it is probably not suitable for general production, where one might want a finer-grained and more restrictive config. However it is easy to override and extend this base config with custom rules, as explained above and in the ESLint docs.
MIT
FAQs
## Table of Contents
We found that eslint-config-digital-scientists 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.
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.