1.7.2 • Published 1 year ago

verify-fabric v1.7.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

新手指南

verify-fabric

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

安装verify-fabric

$ npm i verify-fabric --save-dev
# or
$ yarn add verify-fabric -D

用于自动安装peerDependencies依赖包

# If you're using npm
$ npm install -g install-peerdeps

# If you're using yarn
$ yarn global add install-peerdeps

cd my-project-directory

$ install-peerdeps verify-fabric -dev

in .eslintrc.js

const eslint = require('verify-fabric/dist/eslint');

module.exports = {
  ...eslint,
  rules: {
    ...eslint.rules,
    // your rules
  },
};

in .stylelintrc.js

const stylelint = require('verify-fabric/dist/stylelint');

module.exports = {
  ...stylelint,
  rules: {
    ...stylelint.rules
    // your rules
  },
};

in .prettierrc.js

const fabric = require('verify-fabric/dist/prettier');

module.exports = {
  ...fabric,
};

常见问题

微信小程序的样式检查报错Unexpected unknown type selector "page"

规则可以添加'selector-type-no-unknown': null

1.7.2

1 year ago

1.7.1

1 year ago

1.7.0

1 year ago

1.6.1

2 years ago

1.6.0

2 years ago

1.4.2

2 years ago

1.5.0

2 years ago

1.4.1

2 years ago

1.3.2

2 years ago

1.4.0

2 years ago

1.3.1

2 years ago

1.3.0

2 years ago

1.2.0

2 years ago

1.1.4

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago