eslint rules for wemeet project
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-wemeet:
# wemeet or other name
$ npm install eslint-plugin-wemeet --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-wemeet globally.
Add wemeet to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": ["wemeet"]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"wemeet/use-t-function": "warn", // t check
"wemeet/chinese-spaceing": "warn" // chinese spaceing
}
}- use-t-function
- chinese-spaceing