eslint-plugin-couchdb

Adds support for CouchDB design document JavaScript files

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
eslint-plugin-couchdb
0.2.05 years ago5 years agoMinified + gzip package size for eslint-plugin-couchdb in KB

Readme

eslint-plugin-couchdb
Adds basic support for CouchDB design document JavaScript files.

Installation

You'll first need to install ESLint:
$ npm i eslint --save-dev

Next, install eslint-plugin-couchdb:
$ npm install eslint-plugin-couchdb --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-couchdb globally.

Usage

You should create an .eslintrc file in the root before your design documents, to make sure you don't compile it into your design documents by mistake:
ddocs/
  first-ddoc/
    views/
      ..
  second-ddoc/
    views/
      ..
    validate_doc_update.js
.eslintrc <-- goes here

Recommended .eslintrc file:
{
  "extends": "eslint:recommended",
  "plugins": ["couchdb"]
}

Extra rules

This plugin doesn't dictate much, for example ES5 vs ES6, as you may only be deploying against PouchDB, which can handle anything your browser can.
If you are deploying to CouchDB you should constrain yourself to ES5 only.
{
  "extends": "eslint:recommended",
  "plugins": ["couchdb"],
  "parserOptions": {
    "ecmaVersion": 5,
  }
}