Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/justeat/browserslist-config-fozzie
Just Eat's Browserslist Config used in UI packages
https://github.com/justeat/browserslist-config-fozzie
fozzie ui
Last synced: about 1 month ago
JSON representation
Just Eat's Browserslist Config used in UI packages
- Host: GitHub
- URL: https://github.com/justeat/browserslist-config-fozzie
- Owner: justeat
- License: apache-2.0
- Created: 2019-07-05T14:39:04.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-23T15:02:54.000Z (almost 2 years ago)
- Last Synced: 2024-10-29T00:21:20.763Z (about 2 months ago)
- Topics: fozzie, ui
- Language: JavaScript
- Size: 79.1 KB
- Stars: 1
- Watchers: 43
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# browserslist-config-fozzie
[![npm version](https://badge.fury.io/js/%40justeat%2Fbrowserslist-config-fozzie.svg)](https://badge.fury.io/js/%40justeat%2Fbrowserslist-config-fozzie)
[![Build Status](https://travis-ci.org/justeat/browserslist-config-fozzie.svg?branch=master)](https://travis-ci.org/justeat/browserslist-config-fozzie)This package provides Just Eat's base JS .eslintrc as an extensible shared config.
It extends the [eslint-config-airbnb-base](https://github.com/airbnb/javascript/tree/master/packages/eslint-config-airbnb-base) ruleset with our own set of JS linting rules.
Many thanks to the work that the Airbnb team have put in on creating their template for extension rules – we have liberally borrowed from their structure and documentation in creating this ruleset.
## Usage
### browserslist-config-fozzie
The default export contains a browserlist array. Full information on browsrlist shareable configs [can be found in their README](https://github.com/browserslist/browserslist#shareable-configs).
To use this config, add the following to your package.json once you have installed the `@justeat/browserslist-config-fozzie` package.
```json
"browserslist": [
"extends @justeat/browserslist-config-fozzie"
]
```