1.0.8 • Published 7 years ago

eslint-config-pipe v1.0.8

Weekly downloads
2
License
ISC
Repository
-
Last release
7 years ago

ESLint is a tool for identifying and reporting on patterns found in ECMAScript/JavaScript code similar to JSLint and JSHint. However, It does have a few exceptions:

  • ESLint uses Espree for JavaScript parsing.
  • ESLint uses an AST to evaluate patterns in code.
  • ESLint is completely pluggable, every single rule is a plugin and you can add more at runtime.

##This package provides VHA pipe’s .eslintrc as an extensible shared config.

#Install

npm install eslint-config-pipe

#Usage Shareable configs are designed to work with the extends feaure of .eslintrc files.

To use the VHA PIPE Style shareable config, first run this: npm install --save-dev eslint-config-pipe

Then, add this to your .eslintrc file:

{
  "extends": "pipe"
}

Note: The eslint-config- prefix is omitted since it is automatically assumed by ESLint.

You can override settings from the shareable config by adding them directly into your .eslintrc file.

You can run tests with the command:

npm test

You can make sure this module lints with itself using:

npm run lint

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago