polyjuice icon indicating copy to clipboard operation
polyjuice copied to clipboard

A utility to convert JSHint and JSCS files into ESLint files and vice-versa

Results 4 polyjuice issues
Sort by recently updated
recently updated
newest added

I have a project that uses both jscs and eslint, and I'd like to merge that into one config. I was hoping something like `polyjuice --jscs path/to/jscsrc --eslint path/to/eslintrc >...

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...

Heya, So we've testing this out, it's really handy but it drops some rules the Eslint would support , for example ShellJS environment. What are the criteria for rules being...

question