https://github.com/vanruesc/eslint-config-aether
A custom code style for ESLint.
https://github.com/vanruesc/eslint-config-aether
custom eslint eslint-config
Last synced: 4 months ago
JSON representation
A custom code style for ESLint.
- Host: GitHub
- URL: https://github.com/vanruesc/eslint-config-aether
- Owner: vanruesc
- License: zlib
- Created: 2017-11-08T21:51:46.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2026-01-25T15:30:42.000Z (5 months ago)
- Last Synced: 2026-01-26T08:04:52.216Z (5 months ago)
- Topics: custom, eslint, eslint-config
- Language: TypeScript
- Homepage:
- Size: 163 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Eslint Config Aether
[](https://www.npmjs.com/package/eslint-config-aether)
A custom code style for [ESLint](https://eslint.org/).
## Preview
```js
const btn = document.getElementById("btn");
let count = 0;
function render() {
btn.innerText = `Count: ${count}`;
}
btn.addEventListener("click", () => {
// Count from 1 to 10.
if(count < 10) {
count += 1;
render();
}
});
```
## Installation
```sh
npm install eslint-config-aether
```
## Usage
#### eslint.config.js
```js
// Minimal config
import aether from "eslint-config-aether";
export default aether;
```
```js
// Custom config
import { defineConfig } from "eslint/config";
import aether from "eslint-config-aether";
export default defineConfig([
{
files: ["**/*.js", "**/*.ts"],
extends: [aether],
// anything from here will override the base config
rules: {
"@stylistic/padded-blocks": "off"
}
}
]);
```