1.0.0 • Published 8 years ago

eslint-config-palantir v1.0.0

Weekly downloads
5
License
Apache-2.0
Repository
github
Last release
8 years ago

CircleCI npm version License

ESLint Config Palantir

Linter configuration for ESLint.

Usage

Install

npm install --save-dev eslint-config-palantir

Lint JavaScript

ESLint is the preferred JS linter. Configure your .eslintrc file to extend the one in this package:

extends: "./node_modules/eslint-config-palantir/.eslintrc"

rules:
  # Add overrides and additional rules here
  no-console:
    - 1

The path to your node_modules directory may vary.

See the ESLint docs for details about the extends property.