Given this JSHINT rule: [http://jshint.com/docs/options/#expr](url) ``` "expr": true ``` Results in ESLint: [https://eslint.org/docs/rules/no-unused-expressions](url) ``` "no-unused-expressions": 2 ``` Expected ESLint rule: ``` "no-unused-expressions": 0 ``` Generally, JSHINT `Relaxing options` suppress warnings when `true` is specified.
Given this JSHINT rule: http://jshint.com/docs/options/#expr
Results in ESLint: https://eslint.org/docs/rules/no-unused-expressions
Expected ESLint rule:
Generally, JSHINT
Relaxing optionssuppress warnings whentrueis specified.