Git Product home page Git Product logo

polyjuice's Introduction

Polyjuice

Build Status Coverage Status Code Climate npm version

Converts .jshintrc and .jscsrc files into .eslintrc and vice-versa

Polyjuice is a utility that converts JSHint and JSCS files into ESLint files and the other way around.

Install

$ npm install --save-dev polyjuice

Usage

var polyjuice = require('polyjuice')

var to_eslint = {
  jshint: polyjuice.from.jshint(['./.jshintrc']),
  jscs  : polyjuice.from.jscs(['./.jscsrc']),
  both  : polyjuice.to.eslint(['./.jshintrc'], ['./.jscsrc'])
}

var to_jscs_and_jshint = {
  jshint: polyjuice.to.jshint(['./.eslintrc')],
  jscs  : polyjuice.to.jscs(['./.eslintrc')],
  both  : polyjuice.from.eslint(['./.eslintrc'])
}

When using polyjuice.from.eslint an object with keys jscs and jshint is returned.

CLI

If installed globally, you can use polyjuice as a command line utility. You can check which rules have been discarded by adding --discarded or -d to your command.

To ESLint

You must provide the files to be assessed by using the options --jshint and --jscs, for instance:

$ polyjuice --jshint .jshintrc --jscs .jscsrc > .eslintrc

Note you are allowed to pass in any number of files

To JSHint and JSCS

You must provide the file to be assessed by using the option --eslint and also which output you want by using either --to-jshint or --to-jscs, for instance:

$ polyjuice --eslint .eslintrc --to-jshint > .jshintrc

Note you are allowed to pass in any number of files

Contributing

Contributions are always welcome! If you want to have a better understanding about the conversion files, I encourage you to take a look at the conversion page. You can also check the rules discarded when parsing JSCS, parsing JSHint and parsing ESLint.

Versions used

These are the versions used as source of the translation. Therefore, you may expect all rules up to those versions to have been mapped to the target tool.

  • ESLint: v1.7.2
  • JSCS: v3.0.2
  • JSHint: v2.9.2

License

MIT

polyjuice's People

Contributors

brenolf avatar pdehaan avatar qfox avatar terrenceljones avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.