npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

eslint-config-digital-scientists

v0.27.0

Published

## Table of Contents

Downloads

23

Readme

eslint-config-digital-scientists

Table of Contents


Description

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

  • helping you catch minor bugs
  • alerting you to various anti-patterns you've stumbled upon, which may degrade the performance, readability, or maintainability of your system
  • enforcing various conventions to encourage greater consistency of style and organization, alleviating some of the cognitive load of reading code

Installation

Local Installation

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

Global Installation

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

Usage

For local/project-based setups

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
}

For global/system-wide-default setup

Do the same as above, but just put the .eslintrc file in your $HOME directory.

Note:

  • in the extends attribute, the eslint-config- portion of the config name is assumed by ESLint.
  • the root attribute prevents ESLint from merging local rules with any global configs you may have installed.

Integrating ESLint with Your Editor (real-time linting)

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:


Integrating ESLint With Prettier

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:

  • Install 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
  • Add a .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)
  • Make sure the .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.

Integrating Prettier with Your Editor (autoformatting)

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:

Known Problems

  • My integrated ESLint plugin says I'm breaking a Prettier rule, when I'm not
    • This may happen if you edit your .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.

Extending

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.


Background

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.


License

MIT