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-rivet

v3.0.1

Published

An eslint configuration set for Rivet-related projects

Downloads

4

Readme

eslint-config-rivet

This package extends eslint:recommended (see ESLint documentation) with rules specific to creating projects within the Rivet extended universe. It integrates with Prettier to fix issues and formatting errors.

Installation

You can include this package (and its required peer dependencies) in your project by installing it via npm:

npx install-peerdeps --dev eslint-config-rivet

Usage

Next you will need to setup the configuration for your project using one of the following options:

  1. package.json
{
  "eslintConfig": {
    "extends": "eslint-config-rivet"
  }
}
  1. .eslintrc.json
{
  "extends": "eslint-config-rivet"
}
  1. .eslintrc.js
module.exports = {
  'extends': 'eslint-config-rivet'
}

Build tools

Gulp

Many traditional Rivet projects use Gulp to handle their build processes. This ESLint configuration is ideal for integrating with Gulp.

First, you will need to make sure that Gulp and its ESLint build tool are installed.

npm install --save-dev gulp gulp-eslint

Next, you will need to incorporate this into your Gulp setup. Below is an example gulpfile.js, which shows how to include the build tool in your file and how to write the linting task.

const { src } = require("gulp");
const eslint = require("gulp-eslint");

function lintJSBuild() {
  return src(["src/js/**/*.js", "!node_modules/**"])
    .pipe(eslint())
    .pipe(eslint.format())
    .pipe(eslint.failAfterError());
}

function lintJSWatch() {
  return src(["src/js/**/*.js", "!node_modules/**"])
    .pipe(eslint())
    .pipe(eslint.format());
}

We recommend writing separate functions for linting build versus watch tasks. For lint functions related to your build tasks we recommend including .pipe(eslint.failAfterError());. This will cause your build to fail if it encounters any error-level rules.

Gulp with rollup API

Some Rivet projects may use rollup to bundle code together (usually as part of the npm run build script). It is also possible to incorporate ESLint into the rollup-related task, rather than Gulp directly.

First, you will need to make sure that rollup and its ESLint build tool are installed.

npm install --save-dev rollup rollup-plugin-eslint

Next, you will need to incorporate this into your Gulp setup. Below is an example gulpfile.js, which shows how to incorporate rollup with ESLint.

const rollup = require('rollup');
const { eslint } = require('rollup-plugin-eslint');

function compileJS() {
  return rollup
    .rollup({
      input: './src/js/' + package.name + '.js',
      plugins: [
        eslint({ throwOnError: true })
    ]
    })
    .then(bundle => {
      return bundle.write({
        file: './docs/js/' + package.name + '.js',
        format: 'umd',
        name: package.addOnName,
        sourcemap: true
      });
    });
}

Again, because this is a build-related task, we recommend that you set the throwOnError option to true, as this will cause your build to fail if it encounters any error-level rules.

rollup

Much of the setup for using ESLint directly with rollup (rather than the rollup API with Gulp) is very similar.

First, you will need to make sure that rollup and its ESLint build tool are installed.

npm install --save-dev rollup rollup-plugin-eslint

Next, you will need to setup your rollup.config.js, as shown below.

import { rollup } from "rollup";
import { eslint } from "rollup-plugin-eslint";

export default {
  input: "main.js",
  plugins: [
    eslint({ throwOnError: true })
  ]
};

webpack

Finally, there are a number of Rivet-based applications which rely on webpack to bundle their code.

First, you will need to make sure that ESLint and the ESLint loader for webpack are installed.

npm install --save-dev eslint eslint-loader

Next, you will need to setup ESLint in your webpack configuration. Below is an example webpack.config.js file.

module.exports = {
  // ...
  module: {
    rules: [
      {
        test: /\.js$/,
        exclude: /node_modules/,
        loader: "eslint-loader",
        options: { throwOnError: true }
      }
    ]
  }
  // ...
};

It's important to note that when using transpilers (such as babel) and linting tools, the order they are listed in usually matters as you want to ensure that your code is linted before being transpiled.

Additional integrations

VSCode

  1. Navigate to the VS Code settings (Code/File -> Preferences -> Settings)
  2. Click on the {} icon in the top right corner to open the settings.json file
"editor.formatOnSave": true,
// turn it off for JS and JSX, we will do this via eslint
"[javascript]": {
  "editor.formatOnSave": false
},
// tell the ESLint plugin to run on save
"editor.codeActionsOnSave": {
  "source.fixAll": true
},
// Optional BUT IMPORTANT: If you have the prettier extension enabled for other languages like CSS and HTML, turn it off for JS since we are doing it through Eslint already
"prettier.disableLanguages": ["javascript", "javascriptreact"],

Acknowledgement

Much of the 3.0.0 version of this config was inspired/borrowed from Wes Bos' eslint-config-wesbos.