New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

eslint-plugin-tribou

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-tribou

Start with JS Standard Style but push towards better readability, git-awareness, vim-usability, and React and ES6 best practices

  • 2.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

eslint-plugin-tribou

npm version CircleCI Project Status: Active - The project has reached a stable, usable state and is being actively developed.

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.

npm install --save-dev \
    eslint-plugin-tribou \
    babel-eslint \
    eslint

Then add the following to your .eslintrc:

{
  "extends": [
    "plugin:tribou/recommended"
  ],
  "plugins": [
    "tribou"
  ]
}

Or add an .eslintrc.yml:

extends:
  - plugin:tribou/recommended

plugins:
  - 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:

{
  ...
  "settings": {
    "flowtype": {
      "onlyFilesWithFlowAnnotation": true
    }
  }
}

Or in your .eslintrc.yml:

...
settings:
  flowtype:
    onlyFilesWithFlowAnnotation: true

Prettier Usage

Like using prettier? You can ignore rules that affect prettier styles with eslint-config-prettier

Install:

npm install --save-dev eslint-config-prettier

And add the configs to your .eslintrc.yml:

extends:
  - plugin:tribou/recommended
  - prettier
  - prettier/flowtype
  - prettier/react

plugins:
  - tribou

Legacy Configuration

In order to apply the rules equivalent to eslint-config-tribou@^3.0.0, install v0.3.0 instead:

npm install --save-dev \
    eslint-plugin-tribou@^0.3.0 \
    babel-eslint@^8.0.0 \
    eslint@^4.0.0

Keywords

FAQs

Package last updated on 28 May 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc