Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 的配置文件合集
- Host: GitHub
- URL: https://github.com/geallenboy/garron-standard
- Owner: geallenboy
- License: mit
- Created: 2022-01-19T08:51:10.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-02T05:45:40.000Z (almost 3 years ago)
- Last Synced: 2023-03-05T17:49:58.205Z (almost 2 years ago)
- Topics: eslint-config, prettier-config, stylelint-config
- Language: TypeScript
- Homepage:
- Size: 77.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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,
};
```