npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

filter-coffee

v1.0.0

Published

eslint as mocha tests with a number of configuration options

Downloads

6

Readme

Alt text

filter-coffee

filter-coffee helps you to lint your nodejs projects using eslint as mocha tests.

For more information about mocha go to https://mochajs.org/. For more information about eslint go to http://eslint.org/.

##Installation

$ npm install --save-dev filter-coffee

It is a good idea to include the following in your package json

{
    "eslint": "^1.8.0",
    "mocha": "^2.3.3",
    "chalk": "^1.1.1"
    }

##Usage

###Basic Usage

In your test file

var coffee = require ('filter-coffee');
//pass the array of files to validate
coffee.eslint(['**/*.js']);
coffee.eslint(['index.js','gulpfile.js']);

Do not forget to use mocha to run the tests

 mocha test.js

Optionally specify the path to the .eslintrc file if it is being used from some other location that is not the root of the directory

coffee.configFile('path/to/config/file');

filter-coffee uses the nodejs api of eslint. So, it is possible to pass a number of configuration options.

###Optional configuration options set path to the .eslintrc file. If not specified it expects that the file is at the root of the directory.

coffee.configFile ('path/to/config/file');

set path to the .eslintignore file. If not specified it expects that the file is at the root of the directory.

coffee.ignorePath ('path/to/ignore/file');

pass the environments

coffee.envs(["browser", "mocha"]);

specify the extension of the files that needs to be validated. If nothing is specified, the default of '.js' is considered.

coffee.extensions('.js');

pass an array of global variables. default is empty array.

coffee.globals([]);

pass the array of directories to load custom rules from (default: empty array)

coffee.rulePaths([]);

pass an object of rules to use (default: null)

coffee.rules({
                     semi: 2
                 }); 

specify the parser to be used (default: espree)

coffee.parser('espree');

set the cache to true to operate only on changed files

coffee.cache(true);

name of the file or directory where the cache will be stored (default: .estlintcache)

coffee.cacheLocation('path/to/cache/file');