https://github.com/debbl/eslint-config
my eslint config
https://github.com/debbl/eslint-config
eslint prettier react soildjs vue
Last synced: 5 months ago
JSON representation
my eslint config
- Host: GitHub
- URL: https://github.com/debbl/eslint-config
- Owner: Debbl
- License: mit
- Created: 2022-09-29T08:27:32.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-14T19:41:13.000Z (about 1 year ago)
- Last Synced: 2025-04-14T20:36:32.728Z (about 1 year ago)
- Topics: eslint, prettier, react, soildjs, vue
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/@debbl/eslint-config
- Size: 1.46 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [@debbl/eslint-config](https://github.com/Debbl/eslint-config)
[](https://npmjs.com/package/@debbl/eslint-config)
## Credits
> https://github.com/antfu/eslint-config
## Install
```bash
pnpm i eslint @debbl/eslint-config -D
```
## Config `eslint.config.js`
### Default config
- ignores
- javascript
- comments
- node
- jsdoc
- imports
- unicorn
- sortKeys
- test
- jsonc
- yml
- toml
- markdown
- prettier
```js
import { defineConfig } from '@debbl/eslint-config'
export default defineConfig()
```
## Config `Prettier`, will override default rules
```js
import { defineConfig } from '@debbl/eslint-config'
export default defineConfig({
typescript: true,
prettier: {
semi: false,
},
})
```
## Full OptionConfig
[types.ts](./src/types.ts#L65)