0.2.0 • Published 11 months ago
eslint-config-express v0.2.0
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