Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/geallenboy/garron-standard

prettier,eslint,stylelint 的配置文件合集
https://github.com/geallenboy/garron-standard

eslint-config prettier-config stylelint-config

Last synced: 14 days ago
JSON representation

prettier,eslint,stylelint 的配置文件合集

Awesome Lists containing this project

README

        

# garron/standard

> prettier,eslint,stylelint 的配置文件合集

## 使用

`.eslintrc.js`

```js
const vue3Lint = require('@garron/standard/dist/vue3Lint');
module.exports = {
...vue3Lint,
};
```

`.stylelintrc.js`

```js
const styleLint = require('@garron/standard/dist/styleLint');
module.exports = {
...styleLint,
};
```

`.prettierrc.js`

```js
const prettierLint = require('@garron/standard/dist/prettierLint');

module.exports = {
...prettierLint,
};
```