@alljoint-next/eslint-config-vue3
v0.1.5
Published
The ESLint Config Vue 3 Be Used For AllJointNext
Downloads
107
Readme
ESLintConfigVue3
The ESLint Config Vue 3 Be Used For AllJointNext
Usage
- Installation
yarn add eslint prettier @alljoint-next/eslint-config-vue3 --dev
# npm install eslint prettier @alljoint-next/eslint-config-vue3 --save-dev
- Setup Configuration
echo '{ "extends": "@alljoint-next/eslint-config-vue3" }' > .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,vue}'"
}
}