JSPM

  • Created
  • Published
  • Downloads 219436
  • Score
    100M100P100Q167452F
  • License MIT

ESLint rules for Jasmine

Package Exports

  • eslint-plugin-jasmine

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (eslint-plugin-jasmine) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

eslint-plugin-jasmine

Build Status

ESLint rules for Jasmine

Usage

  1. Install eslint-plugin-jasmine as a dev-dependency:

    npm install --save-dev eslint-plugin-jasmine
  2. Enable the plugin by adding it to your .eslintrc:

    plugins:
      - jasmine

By default, no rules are enabled. See the next section for more.

Configuration

This plugin exports a recommended configuration that enforces good practices.

To enable this configuration, use the extends property in your .eslintrc config file:

plugins:
  - jasmine
extends: 'plugin:jasmine/recommended'

See the ESLint config docs for more information about extending configuration files.

Rules

Rule Recommended Options
named-spy 0
no-focused-tests 2
no-disabled-tests 1
no-suite-dupes 1, 'block' ['block', 'branch']
no-spec-dupes 1, 'block' ['block', 'branch']
missing-expect 0, 'expect()' expectation function names
no-suite-callback-args 2
valid-expect 1
no-assign-spyon 0

For example, using the recommended configuration, the no-focused-tests rule is enabled and will cause ESLint to throw an error (with an exit code of 1) when triggered.

You may customise each rule by adding a value in your .eslintrc rules property:

plugins:
  - jasmine
rules:
  jasmine/no-focused-tests: 0
  jasmine/no-suite-dupes:
    - 2
    - branch

See configuring rules for more information.

Author

© 2016 Tom Vincent git@tlvince.com and contributors.

License

Released under the MIT license.