@pequity/eslint-config
Version:
Pequity's ESLint config
118 lines (87 loc) • 3.72 kB
Markdown
# @pequity/eslint-config
> Custom ESLint and Prettier config with Vue.js support and sensible defaults
> [!NOTE]
> Starting from v1, this ESLint config uses the [ESLint Flat config](https://eslint.org/docs/latest/use/configure/configuration-files-new) and is only compatible with ESLint v9+.
> If you're looking for the previous version, checkout the [README](https://github.com/getpequity/eslint-config/blob/v0/README.md) here.
## Installation
```bash
pnpm i -D @pequity/eslint-config eslint prettier
```
## Usage
### ESLint config
Add an `eslint.config.js` (or `eslint.config.cjs` if your project is CommonJS) that imports the `config` function:
```javascript
import { config } from '@pequity/eslint-config';
export default [
...config({
env: ['browser'], // Make sure to add the appropriate global variables for your environment
}),
{
// Add custom rules here
},
];
```
#### Customizing the config
The configuration comes with default settings that extend the [neostandard](https://github.com/neostandard/neostandard/tree/main?tab=readme-ov-file#configuration-options) config. You can further customize it by passing an object to the `config` function:
**Config settings defaults:**
| Option | Type | Description | Default |
| ---------- | ---------- | ----------------------------- | ------- |
| ts | `boolean` | Enable TypeScript support | `true` |
| noJsx | `boolean` | No jsx rules will be added | `true` |
| noStyle | `boolean` | No style rules will be added | `true` |
| semi | `boolean` | Use semicolons | `true` |
| vue | `boolean` | Enable Vue.js support | `true` |
| vueVersion | `2` or `3` | Specify the version of Vue.js | `3` |
| vitest | `boolean` | Enable Vitest support | `true` |
**Example:**
```javascript
config({
ts: false,
vue: true
vueVersion: 3,
vitest: false,
})
```
### Prettier config
Create a `prettier.config.js` file with the following content:
```javascript
import prettierConfig from '@pequity/eslint-config/prettier';
export default prettierConfig;
```
### package.json scripts
Add the following ESLint commands to your `.package-json` for linting and autofixing:
```json
{
"lint": "eslint \"**/*.{vue,ts,js}\"",
"lint-fix": "eslint --fix \"**/*.{vue,ts,js}\""
}
```
### VS Code settings
Ad the following settings to your VS Code project settings for autofix on save:
`.vscode/settings.json`
```json
{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
```
## Features
- Based on [neostandard](https://github.com/neostandard/neostandard)
- [Prettier](https://prettier.io) for code formatting
- Plugins
- [eslint-plugin-html](https://github.com/BenoitZugmeyer/eslint-plugin-html) for linting inline scripts contained in HTML files
- [eslint-plugin-vue](https://github.com/vuejs/eslint-plugin-vue/) for linting Vue.js files
- [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) for disabling all rules that conflict with Prettier
- [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) for using Prettier as a code formatter with `eslint --fix`
- [eslint-plugin-simple-import-sort](https://github.com/lydell/eslint-plugin-simple-import-sort) for auto-fixing imports order
- [eslint-plugin-vitest](https://github.com/vitest-dev/eslint-plugin-vitest) for linting Vitest test files
## License
[MIT](http://opensource.org/licenses/MIT)