0.1.5 • Published 8 years ago

amaze-eslint v0.1.5

Weekly downloads
19
License
MIT
Repository
-
Last release
8 years ago

Amaze - ESLint

These rules dictate the JavaScript linting standards endorsed by Amaze Ltd.

Installation

  1. Install Node dependencies

    npm install

Usage

  1. Ensure an initial .eslintrc.js exists in the target directory with appropriate configuration options:

    Example '.eslintrc.js'

    module.exports = {
    	'extends': [
    		'amaze-eslint',
    		// Additional rule sets...
    		'amaze-eslint/rules/es6'
    	].map(require.resolve),
    	'env': {
    		// Environment settings...
    		'browser': true
    	},
    	// Local override rules...
    	'rules': {}
    };
  2. Run eslint standalone (provided eslint is installed globally) with:

    eslint <DIRECTORY>

Or via other workflow tooling designed to interface with the eslint API.

Links

0.1.5

8 years ago

0.1.4

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago