1.0.1 • Published 1 year ago
@vdl-dev/eslint-config v1.0.1
Vandelanotte: ESLint configuration for VanillaJS projects
A very opinionated ESLint configuration used at Vandelanotte.
Usage
Install the package as a devDependency.
# NPM
npm i @vdl-dev/eslint-config -D
# Yarn
yarn add @vdl-dev/eslint-config -D
Add the package to the extends
-section of your eslint configuration.
Example .eslintrc.js
file:
// .eslintrc.js
module.exports = {
type: "module",
env: {
es6: true,
node: true,
},
extends: [
'@vdl-dev/eslint-config',
],
}