Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wework/eslint-config-wework
https://github.com/wework/eslint-config-wework
es2015 eslint eslint-config react wework
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wework/eslint-config-wework
- Owner: wework
- License: mit
- Created: 2016-12-04T19:17:54.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-09T05:54:50.000Z (about 6 years ago)
- Last Synced: 2024-10-29T00:44:38.214Z (2 months ago)
- Topics: es2015, eslint, eslint-config, react, wework
- Language: JavaScript
- Size: 85 KB
- Stars: 2
- Watchers: 9
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
eslint-config-wework
================[![Libraries.io for GitHub][librariesio-image]][librariesio-url]
[![NPM version][npm-version-image]][npm-url]
[![NPM downloads][npm-downloads-image]][npm-url]
[![MIT License][license-image]][license-url]>Shared ESLint configuration for WeWork projects
# Introduction
ESLint config for WeWork projects. This is an extension of `eslint-config-airbnb` and also provides `react`, `imports`, `lodash`, `mocha`, and `node` presets.
# Usage
### Install:
```
npm install eslint-config-wework --save
```If you're using `npm` < v3 you'll need to install each of this packages `peerDependencies` explicitly.
```
npm install eslint-config-airbnb eslint-plugin-react eslint-plugin-import eslint-plugin-jsx-a11y --save
```Note: make sure the versions of the above packages that are installed satisfy this package's `peerDependencies`, otherwise you might see inconsistent behavior.
### Configure:
First, `touch .eslintrc` if you don't already have one.
Then update it to look like the following:
```
{
"root": true,
"extends": [
"wework"
],
"rules": {
# Override preset rules here
},
}
```### React:
To enable React-specific rules, extend `wework/react`:```
{
"root": true,
"extends": [
"wework",
"wework/react"
],
"rules": {
# Override preset rules here
},
}
```### Imports:
To enable linting of ES2015+ (ES6+) import/export syntax, and prevent issues with misspelling of file paths and import names, extend `wework/imports`:```
{
"root": true,
"extends": [
"wework",
"wework/react",
"wework/imports"
],
"rules": {
# Override preset rules here
},
}
```### Lodash:
To enable React-specific rules, extend `wework/lodash`:```
{
"root": true,
"extends": [
"wework",
"wework/lodash"
],
"rules": {
# Override preset rules here
},
}
```### Mocha:
To enable linting of Mocha/Chai/Sinon tests add a eslintrc file to your test folder:```
{
"extends": [
"wework/mocha",
],
"rules": {
# Override preset rules here
},
}
```### Node:
For Node specific config, including identification of security hotspots, add a eslintrc file to your node src folder:```
{
"extends": [
"wework/node",
],
"rules": {
# Override preset rules here
},
}
```Note: the security plugin is slow, finds a lot of false positives which need triage by a human, and isn't geared towards client-side. Use sparingly!
See https://github.com/nodesecurity/eslint-plugin-security for more info.# Development
1. Checkout this repo
2. Make changes in a feature branch and open a PR to `master`The purpose of this package is to define and enforce code style in JavaScript code. With that in mind please be mindful when proposing changes, explain your reasoning and consider other users.
# npm scripts
Target | Behavior
------------ | -------------
**`npm run lint`** | (*Run as a git pre-commit hook*) Lint the config with itself
**`npm run security-scan`** | (*Run as a git pre-push hook*) Checks npm dependencies for security vulnerabilities
**`npm run release `** | Generates a changelog, updates package version, tags and pushes via [`np`](https://www.npmjs.com/package/np). This should only be run on an up-to-date `master` by a maintainer of this package.
Version can be a semver level: `patch | minor | major | prepatch | preminor | premajor | prerelease`, or a valid semver version: `1.2.3`.**`npm run` will list all npm scripts**
[npm-url]: https://npmjs.org/package/eslint-config-wework
[npm-version-image]: http://img.shields.io/npm/v/eslint-config-wework.svg?style=flat-square
[npm-downloads-image]: http://img.shields.io/npm/dm/eslint-config-wework.svg?style=flat-square[license-url]: LICENSE
[license-image]: http://img.shields.io/badge/license-MIT-000000.svg?style=flat-square[librariesio-url]: https://libraries.io/npm/eslint-config-wework
[librariesio-image]: https://img.shields.io/librariesio/github/wework/eslint-config-wework.svg?maxAge=2592000