https://github.com/tribou/eslint-plugin-tribou
Start with JS Standard style but push towards better readability, git-awareness, vim-usability, and React and ES6 best practices
https://github.com/tribou/eslint-plugin-tribou
eslint eslint-config eslint-plugin eslint-plugin-tribou flowtype git-awareness react readability vim-usability
Last synced: 6 months ago
JSON representation
Start with JS Standard style but push towards better readability, git-awareness, vim-usability, and React and ES6 best practices
- Host: GitHub
- URL: https://github.com/tribou/eslint-plugin-tribou
- Owner: tribou
- License: mit
- Created: 2017-05-31T02:25:57.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-28T14:33:48.000Z (almost 7 years ago)
- Last Synced: 2024-11-05T17:05:52.630Z (7 months ago)
- Topics: eslint, eslint-config, eslint-plugin, eslint-plugin-tribou, flowtype, git-awareness, react, readability, vim-usability
- Language: JavaScript
- Homepage:
- Size: 81.1 MB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# eslint-plugin-tribou
[](https://badge.fury.io/js/eslint-plugin-tribou)
[](https://circleci.com/gh/tribou/eslint-plugin-tribou)
[](http://www.repostatus.org/#active)Start with JS Standard Style but push towards better readability,
git-awareness, vim-usability, and React and ES6 best practices.## Quick Start
NOTE: If you're migrating from `eslint-config-tribou` and want to maintain
compatibility, see the [Legacy
Configuration](https://github.com/tribou/eslint-plugin-tribou#legacy-configuration).```bash
npm install --save-dev \
eslint-plugin-tribou \
babel-eslint \
eslint
```Then add the following to your `.eslintrc`:
```json
{
"extends": [
"plugin:tribou/recommended"
],
"plugins": [
"tribou"
]
}
```Or add an `.eslintrc.yml`:
```yml
extends:
- plugin:tribou/recommendedplugins:
- tribou# Wow, that was easier... 😉
```### Flow
By default, Flow typing is required for an entire project since
`eslint-plugin-flowtype` will require the `\\ @flow` annotation to be set at
the top of every file and subsequently check for all other flow annotation
requirements in that file. This allows new projects to enforce Flow typing on
every file from the start.If you do not wish to use Flow typing on every file (or at all) in a project,
this config can still enforce all of its other standards (including Flow
linting on files that **do** have the `// @flow` annotation). To disable this
"universal" Flow typing requirement in your `.eslintrc`:```js
{
...
"settings": {
"flowtype": {
"onlyFilesWithFlowAnnotation": true
}
}
}
```Or in your `.eslintrc.yml`:
```yml
...
settings:
flowtype:
onlyFilesWithFlowAnnotation: true
```## Prettier Usage
Like using [`prettier`](https://prettier.io/)? You can ignore rules that affect
`prettier` styles with
[`eslint-config-prettier`](https://github.com/prettier/eslint-config-prettier)Install:
```
npm install --save-dev eslint-config-prettier
```And add the configs to your `.eslintrc.yml`:
```yml
extends:
- plugin:tribou/recommended
- prettier
- prettier/flowtype
- prettier/reactplugins:
- tribou
```## Legacy Configuration
In order to apply the rules equivalent to `eslint-config-tribou@^3.0.0`,
install v0.3.0 instead:```bash
npm install --save-dev \
eslint-plugin-tribou@^0.3.0 \
babel-eslint@^8.0.0 \
eslint@^4.0.0
```