Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/electron/eslint-config
ESLint config used by Electron and Electron maintained modules
https://github.com/electron/eslint-config
Last synced: 3 months ago
JSON representation
ESLint config used by Electron and Electron maintained modules
- Host: GitHub
- URL: https://github.com/electron/eslint-config
- Owner: electron
- License: mit
- Created: 2021-11-08T22:49:43.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-18T01:36:02.000Z (9 months ago)
- Last Synced: 2024-04-14T03:56:18.751Z (8 months ago)
- Language: JavaScript
- Size: 124 KB
- Stars: 5
- Watchers: 7
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# @electron-internal/eslint-config [![npm][npm-image]][npm-url]
[npm-image]: https://img.shields.io/npm/v/@electron-internal/eslint-config.svg
[npm-url]: https://npmjs.org/package/@electron-internal/eslint-configThis module is a reusable eslint config that the Electron team uses across our
projects for consistency. It is loosely based on `standard` but with several
deviations, most notably we enforce semicolon usage.## Installation
```bash
yarn add eslint eslint-plugin-node @electron-internal/eslint-config --dev
``````json5
// .eslintrc.json
{
"extends": "@electron-internal"
}
```