1.0.0 • Published 5 years ago

the-front-lint v1.0.0

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

the-front-lint

参照 '@umijs/fabric 搭建符合个人 lint 配置文件合集

安装

  npm i the-front-lint --save-dev

使用

// .eslintrc.js
const { strictEslint } = require('the-front-lint');

module.exports = {
  ...strictEslint,
  globals: {
    ANT_DESIGN_PRO_ONLY_DO_NOT_USE_IN_YOUR_PRODUCTION: true,
    page: true
  }
};

// .prettierrc.js
const { prettier } = require('the-front-lint');

module.exports = {
  ...prettier
};

// .stylelintrc.js
const { stylelint } = require('the-front-lint');

module.exports = {
  ...stylelint
};