https://github.com/gavinbirkhoff/lavy
🛠️ Codelint cli that escort for our code programming.
https://github.com/gavinbirkhoff/lavy
editorconfig eslint format prettier stylelint
Last synced: about 1 year ago
JSON representation
🛠️ Codelint cli that escort for our code programming.
- Host: GitHub
- URL: https://github.com/gavinbirkhoff/lavy
- Owner: GavinBirkhoff
- License: mit
- Created: 2023-04-01T04:59:14.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-28T14:13:31.000Z (over 2 years ago)
- Last Synced: 2025-02-25T07:04:25.599Z (over 1 year ago)
- Topics: editorconfig, eslint, format, prettier, stylelint
- Language: JavaScript
- Homepage:
- Size: 113 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lavy
🛠️ Codelint cli that escort for our code programming.
# Usage
```shell
npm install --save-dev lavy
npx lavy --init
# or Select Configuration
npx lavy -i
# show help
npx lavy -h
```
# eslint-config-lavy
Eslint config with typescript, react, vue, and prettier
```shell
npm install --save-dev eslint-config-lavy
```
```js
// .eslintrc.js
module.exports = {
extends: [require.resolve('lavy')]
}
module.exports = {
extends: [require.resolve('lavy/react')]
}
module.exports = {
extends: [require.resolve('lavy/vue')]
}
module.exports = {
extends: [require.resolve('lavy/typescript')]
}
module.exports = {
extends: [require.resolve('lavy/typescript/react')]
}
module.exports = {
extends: [require.resolve('lavy/typescript/vue')]
}
```
# stylelint-config-lavy
Stylelint config with standard and prettier
```shell
npm install --save-dev stylelint-config-lavy
```
```js
// .stylelintrc.js
module.exports = {
extends: [require.resolve('lavy')]
}
```