Linter configuration for ESLint.
tslint:recommended configuration preset in the tslint package.
npm install --save-dev eslint-config-palantirESLint is the preferred JS linter. Configure your .eslintrc file to extend the one in this
package:
extends: "./node_modules/eslint-config-palantir/.eslintrc.yml"
rules:
# Add overrides and additional rules here
no-console:
- 1The path to your node_modules directory may vary.
See the ESLint docs for details about the
extends property.