Difference between revisions of "Js/jshintrc"

From Adam Meola - wiki
< Js
Jump to navigation Jump to search
Line 9: Line 9:
  
 
<code>{ "esversion":6, "-W083": true, "-W030": true}</code>
 
<code>{ "esversion":6, "-W083": true, "-W030": true}</code>
 +
 +
<div style="width: auto; background-color: #f2f5fa; padding: 10px 0; border: 1px solid #dee5f1;  margin-bottom: 10px;">
 +
<div style="width: 94%; position: relative; left: 3%;">
 +
Note:
 +
:This wiki is being assembled in no particuslar order.  More is soon to come, but i've started here.</div>
 +
</div>
  
 
Full and Official documentation available at: https://jshint.com/docs/
 
Full and Official documentation available at: https://jshint.com/docs/

Revision as of 15:57, 25 March 2021

.jshintrc

This is the config file for the JSHint (or other JS linter) available in most modern IDEs.


"JSHint is a program that flags suspicious usage in programs written in JavaScript. The core project consists of a library itself as well as a CLI program distributed as a Node module."

Personally, I use this file to specify ES version, and to turn a few warnings off..

Here's my usual .jshintrc:

{ "esversion":6, "-W083": true, "-W030": true}

Note:

This wiki is being assembled in no particuslar order. More is soon to come, but i've started here.

Full and Official documentation available at: https://jshint.com/docs/