@peterek/eslint-config-base
v1.0.2
Published
ESLint configuration base to use prettier & standard configurations
Downloads
6
Readme
@peterek/eslint-config-base
An ESLint shareable config base for language specific configurations using Prettier and JavaScript Standard Style as ESLint rules.
This is a base configuration for more language specific configs such as
@peterek/eslint-config-js
or@peterek/eslint-config-ts
. DO NOT USE DIRECTLY!
Usage
ESLint config
This package has two main files (base
& end
). To ensure all the extending configurations align with prettier & standard configs, you have to put all other extends between these modules.
{
"extends": [
"@peterek/base/start",
// all the additional configurations should be put here,
"@peterek/base/end"
]
}