@fmfe/eslint-config-fmfe-nodejs
v0.0.1
Published
ESLint configuration of Followme Frontend Team Node.js group Edit
Downloads
2
Readme
eslint-config-fmfe-nodejs
ESLint configuration of Followme Frontend Team Node.js group, base on standard.
usage
edit configuration file:
$ touch .eslintrc.js
module.exports = {
extends: 'fmfe-nodejs',
};
install
$ npm install eslint-config-fmfe-nodejs -D
$ ./node_modules/.bin/eslint *.js
or
$ npm install eslint eslint-config-fmfe-nodejs -g
$ eslint *.js
rules
- 基本规则
- 附加规则
- 行尾必须加分号
- 缩进使用 4 个空格
- 要求使用 let 或 const 而不是 var
- 优先使用 const,其次才是 let
contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
license
this repo is released under the MIT License.