Skip to content

martinheidegger/lab-lint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lab-lint

This small library offers JsLinting for the spumko/lab testing framework.

usage

Install the library using npm:

npm i lab-lint --save-dev

Create a unit test in your /test folder and add following lines:

"use strict";

/*jslint nomen: true*/
var dirname = __dirname;
/*jslint nomen: false */

var Lab = require("lab");

require("lab-lint")(Lab, dirname);

This will automatically add linting of all .js files in the /lib and /test folder of your project. (yes, it is opinionated :-p)

configuration

You can setup your guidelines by adding a .jslint file to your project folder. It's a json file and accepts all settings that jslint accepts.

About

Lint test to be integrated into the lab test system.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published