Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month ago
JSON representation
A eslint config preset
- Host: GitHub
- URL: https://github.com/akinoccc/eslint-config-airbe
- Owner: akinoccc
- Created: 2024-07-08T15:56:41.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-13T15:33:14.000Z (2 months ago)
- Last Synced: 2024-09-29T01:08:11.135Z (about 2 months ago)
- Topics: eslint, eslint-config, eslint-config-airbe, eslint-configs, eslint-typescript, eslint-vue3
- Language: TypeScript
- Homepage: https://eslint.akino.icu
- Size: 136 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
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",
}
})
```