https://github.com/statsfm/eslint
The ESLint config used in all stats.fm projects
https://github.com/statsfm/eslint
Last synced: 2 months ago
JSON representation
The ESLint config used in all stats.fm projects
- Host: GitHub
- URL: https://github.com/statsfm/eslint
- Owner: statsfm
- License: bsd-3-clause
- Created: 2022-05-17T20:12:54.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-17T21:08:35.000Z (about 3 years ago)
- Last Synced: 2024-12-13T15:31:13.871Z (6 months ago)
- Language: JavaScript
- Size: 110 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Statsfm Style Guide
The ESLint config Statsfm uses.
## Installation
There are four packages available. Each of them can be installed with `yarn add --dev @statsfm/eslint-config-`.
The following packages can be installed:```txt
@statsfm/eslint-config-base
@statsfm/eslint-config-jest
@statsfm/eslint-config-typescript
@statsfm/eslint-config-vue
```You may then extend the installed package(s) in your `.eslintrc.js`, like this:
```js
module.exports = {
extends: [
"@statsfm/base",
"@statsfm/jest",
"@statsfm/typescript",
"@statsfm/vue",
],
};
```Feel free to remove any configs you don't need.
## License
This project is licensed under the 3-Clause BSD license.