Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shoutem/eslint-config
Shoutem ESlint config
https://github.com/shoutem/eslint-config
Last synced: about 2 months ago
JSON representation
Shoutem ESlint config
- Host: GitHub
- URL: https://github.com/shoutem/eslint-config
- Owner: shoutem
- License: mit
- Created: 2020-05-19T11:57:56.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-19T10:14:22.000Z (over 2 years ago)
- Last Synced: 2024-10-18T20:44:52.122Z (3 months ago)
- Language: JavaScript
- Size: 45.9 KB
- Stars: 0
- Watchers: 8
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Shoutem JavaScript Style Guide
This repository provides three eslint packages:
1. [eslint-config-base](https://github.com/shoutem/eslint-config/tree/develop/packages/eslint-config-base)
2. [eslint-config-react](https://github.com/shoutem/eslint-config/tree/develop/packages/eslint-config-react)
3. [eslint-config-react-native](https://github.com/shoutem/eslint-config/tree/develop/packages/eslint-config-react-native)## Automatically Fix Code in VS Code
For a good developer experience, it's useful to setup your editor to automatically run ESLint's automatic fix command (i.e. eslint --fix) whenever a file is saved. If you are using VS code, download ESLint extension for VS code and add this config in the settings.json file in VS Code to get automatic fixing whenever saving a file:
```sh
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
}
```File is located in:
```sh
.vscode/settings.json
```