All Projects → umijs → Fabric

umijs / Fabric

💪一些保证代码质量的配置

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Fabric

Barebones
A barebones boilerplate for getting started on a bespoke front end.
Stars: ✭ 127 (-50.78%)
Mutual labels:  eslint, stylelint
electron-vue-boilerplate
Simple boilerplate for building Vue app with Electron and Webpack.
Stars: ✭ 53 (-79.46%)
Mutual labels:  stylelint, eslint
Express Webpack React Redux Typescript Boilerplate
🎉 A full-stack boilerplate that using express with webpack, react and typescirpt!
Stars: ✭ 156 (-39.53%)
Mutual labels:  eslint, stylelint
Lint Staged
🚫💩 — Run linters on git staged files
Stars: ✭ 9,492 (+3579.07%)
Mutual labels:  eslint, stylelint
db-portfolio
My personal portfolio website.
Stars: ✭ 97 (-62.4%)
Mutual labels:  stylelint, eslint
Static Site Boilerplate
A better workflow for building modern static websites.
Stars: ✭ 1,633 (+532.95%)
Mutual labels:  eslint, stylelint
figma-plugin-typescript-boilerplate
Figma plugin TypeScript boilerplate to start developing right away
Stars: ✭ 43 (-83.33%)
Mutual labels:  stylelint, eslint
Wemake Vue Template
Bleeding edge vue template focused on code quality and developer happiness.
Stars: ✭ 645 (+150%)
Mutual labels:  eslint, stylelint
dva-typescript-antd-starter-kit
A admin dashboard application demo based on antd by typescript and dva
Stars: ✭ 61 (-76.36%)
Mutual labels:  stylelint, eslint
react-js-boilerplate
A React + Redux + HOT + Webpack + Material-UI + Sass boilerplate
Stars: ✭ 14 (-94.57%)
Mutual labels:  stylelint, eslint
Bathe
The simplest WordPress starter theme including full setup for Sass, PostCSS, Autoprefixer, stylelint, Webpack, Eslint, imagemin, Browsersync, etc.
Stars: ✭ 65 (-74.81%)
Mutual labels:  eslint, stylelint
starbase
⭐ Production-ready website boilerplate made with webpack 5, modern JS (via Babel 7) & Sass
Stars: ✭ 70 (-72.87%)
Mutual labels:  stylelint, eslint
Generator Dhboilerplate
Boilerplate made by David Hellmann
Stars: ✭ 54 (-79.07%)
Mutual labels:  eslint, stylelint
Frasco
Quick starter for Jekyll including full setup for Sass, PostCSS, Autoprefixer, stylelint, Webpack, ESLint, imagemin, Browsersync, etc.
Stars: ✭ 123 (-52.33%)
Mutual labels:  eslint, stylelint
React Ssr Starter
All have been introduced React environment
Stars: ✭ 20 (-92.25%)
Mutual labels:  eslint, stylelint
Front End Guide
📚 Study guide and introduction to the modern front end stack.
Stars: ✭ 14,073 (+5354.65%)
Mutual labels:  eslint, stylelint
Web Configs
Common configurations for building web apps at Shopify
Stars: ✭ 302 (+17.05%)
Mutual labels:  eslint, stylelint
React 2048 Game
🎮 A fancy 2048 game build with react, redux best practices.
Stars: ✭ 401 (+55.43%)
Mutual labels:  eslint, stylelint
7-react-admin-ts
用 ts + react-hooks 实现的管理后台
Stars: ✭ 23 (-91.09%)
Mutual labels:  stylelint, eslint
react-component-library-lerna
Build your own React component library managed with lerna, presented with storybook and published in private npm registry.
Stars: ✭ 55 (-78.68%)
Mutual labels:  stylelint, eslint

umi-fabric

一个包含 prettier,eslint,stylelint 的配置文件合集

A collection of configuration files containing prettier, eslint, stylelint

Use

in .eslintrc.js

module.exports = {
  extends: [require.resolve('@umijs/fabric/dist/eslint')],

  // in antd-design-pro
  globals: {
    ANT_DESIGN_PRO_ONLY_DO_NOT_USE_IN_YOUR_PRODUCTION: true,
    page: true,
  },

  rules: {
    // your rules
  },
};

in .stylelintrc.js

module.exports = {
  extends: [require.resolve('@umijs/fabric/dist/stylelint')],
  rules: {
    // your rules
  },
};

in .prettierrc.js

const fabric = require('@umijs/fabric');

module.exports = {
  ...fabric.prettier,
};
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].