@alljoint-next/eslint-config-lite
v0.1.2
Published
The ESLint Config Lite Be Used For AllJointNext
Downloads
1
Readme
ESLintConfig
The ESLint Config Lite Be Used For AllJointNext (without jest)
Usage
- Installation
yarn add eslint prettier @alljoint-next/eslint-config-lite --dev
# npm install eslint prettier @alljoint-next/eslint-config-lite --save-dev
- Setup Configuration
echo '{ "extends": "@alljoint-next/eslint-config-lite" }' > .eslintrc.json
echo '**/node_modules/**
./node_modules/**
**/.{git,svn,hg}/**
./.{git,svn,hg}/**
**/dist/**
./dist/**' > .eslintignore
- Add Scripts package.json
{
"scripts": {
"format": "prettier '**/*.{js,json,ts,vue,md,yml,yaml}' !**/dist/** !./dist/** !**/coverage/** --write --no-semi --single-quote --trailing-comma none && yarn lint --fix",
"lint": "eslint '**/*.js'"
}
}