Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robinloeffel/eslint-config-sweet
ESLint shareable config for the most sweet-ass JavaScript and TypeScript. 🤙🏼
https://github.com/robinloeffel/eslint-config-sweet
eslint eslint-config javascript typescript
Last synced: 19 days ago
JSON representation
ESLint shareable config for the most sweet-ass JavaScript and TypeScript. 🤙🏼
- Host: GitHub
- URL: https://github.com/robinloeffel/eslint-config-sweet
- Owner: robinloeffel
- License: mit
- Created: 2020-02-18T10:18:43.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-24T18:13:11.000Z (26 days ago)
- Last Synced: 2024-10-26T03:09:32.571Z (24 days ago)
- Topics: eslint, eslint-config, javascript, typescript
- Language: TypeScript
- Homepage: https://npmjs.com/eslint-config-sweet
- Size: 819 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- Changelog: changelog.md
- License: license
Awesome Lists containing this project
README
# eslint-config-sweet
[![latest version on npm](https://img.shields.io/npm/v/eslint-config-sweet)](https://www.npmjs.com/package/eslint-config-sweet)
[![npm downloads a month](https://img.shields.io/npm/dm/eslint-config-sweet)](https://www.npmjs.com/package/eslint-config-sweet)
[![eslint peer dependency](https://img.shields.io/npm/dependency-version/eslint-config-sweet/peer/eslint?label=eslint%20peer%20dep)](https://github.com/eslint/eslint)
[![typescript peer dependency](https://img.shields.io/npm/dependency-version/eslint-config-sweet/peer/typescript?label=typescript%20peer%20dep)](https://github.com/microsoft/typescript)
[![package license](https://img.shields.io/npm/l/eslint-config-sweet)](license)> ESLint [shareable config](https://eslint.org/docs/developer-guide/shareable-configs.html) for the most sweet-ass JavaScript and TypeScript. 🤙🏼
## Installation
```console
npm i -D eslint-config-sweet eslint typescript
```## Usage
To use the package, follow the ESLint docs about [integrating shareable configs](https://eslint.org/docs/latest/use/configure/configuration-files#using-a-shareable-configuration-package).
```js
import sweet from "eslint-config-sweet";export default [ sweet ];
```## Pro Tip for VS Code
To make your experience even better, Microsoft has added a rad feature to VS Code that makes cleaning up `import` and `export` statements a breeze! Go to your user settings via `⌘ + ⇧ + p`, then type `user json`, and hit enter. Add `"source.organizeImports": "explicit"` to `"editor.codeActionsOnSave"` as seen [here in the VS Code docs](https://code.visualstudio.com/docs/typescript/typescript-refactoring#_code-actions-on-save), and save that bad boy.
Boom, VS Code will now automatically remove unused `import`s and `export`s, as well as sort them for ya! 🤙🏼
## How will my code look when using this?
Sweet, man. That's the point. On a more serious note though: It mostly, of course, enforces consistency, even though it may not look like it the first few moments. It will make your code feel more lightweight and nudge you towards using more modern APIs and good practices, while maintaining readability and keeping complexity down.
## Nice to know
`sweet` will clash with your [Prettier](https://prettier.io/) setup, there's no way around it. This config is using [`@stylistic/eslint-plugin`](https://github.com/eslint-stylistic/eslint-stylistic) for formatting, and [`eslint-config-prettier`](https://github.com/prettier/eslint-config-prettier) turns off ESLint's built-in, but [deprecated](https://eslint.org/docs/latest/rules/#deprecated), formatting rules.
While I generally agree with the different concerns of linters and formatters, Prettier just isn't configurable enough for my liking. And this is by design, as it is meant to be an opinionated, zero-config, drop-in solution with limited options. Until we have a more flexible formatter available, using ESLint in this way seems to be the way to go.
## License
MIT