Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/akinoccc/eslint-config-airbe

A eslint config preset
https://github.com/akinoccc/eslint-config-airbe

eslint eslint-config eslint-config-airbe eslint-configs eslint-typescript eslint-vue3

Last synced: 7 days ago
JSON representation

A eslint config preset

Awesome Lists containing this project

README

        

# eslint-config-airbe

[![npm](https://img.shields.io/npm/v/eslint-config-airbe)](https://npmjs.com/package/eslint-config-airbe)

> [!NOTE]
> A eslint config preset.

## Install

```bash
# The lib build in the deps, so you just need to install the one.
npm install eslint-config-airbe --save-dev
```

## Usage

```js
import defineConfig from 'eslint-config-airbe'

export default defineConfig({
js: {
"no-console": "error"
},
ts: true,
vue: true,
stylistic: true,
importX: true,
unusedImports: true,
ignores: ["node_modules"],
globals: {
bar: true,
foo: "readonly",
baz: "writable",
}
})
```