eslint-config-express
v0.2.0
Published
the express eslint config 🔧🔥⚙️
Downloads
6
Readme
eslint-config-express
the express eslint config 🔧🔥⚙️
use
npm install eslint-config-express --save-dev
then in your eslint config file:
for ESM:
import expressLintConfig from 'eslint-config-express';
export default [
...expressLintConfig,
];
or for CJS:
const expressLintConfig = require('eslint-config-express');
module.exports = [
...expressLintConfig,
];
see the eslint docs for more information