1.0.2 • Published 6 years ago

eslint-config-kara v1.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

eslint-config-kara

This package provides an ESLint shareable configuration for JavaScript. It extends the JavaScript Standard Style and eslint:recommended to do the following.

  • Enforce the use of standards implemented by modern browser environments.
  • Enforce a consistent use of curly brackets, line length, and other minor styling characteristics.
  • Remove restrictions on variable declarations, conditional assignments, and the use of parenthesis.

Prerequisites

Packages should declare a dependency on ESLint.

npm install eslint --save-dev

Installation

npm install eslint-config-kara --save-dev

Usage

Extend eslint-config-kara in your ESLint configuration.

{
    "extends": "eslint-config-kara"
}

Override the environment configuration to support Node.js or older browsers. See .eslintrc.ie.js for an example.

License

This project is license under the ISC License (ISC). See the LICENSE file.

Authors

  • Trevor Karjanis