Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 456 Bytes

prefer-no-engineStrict.md

File metadata and controls

38 lines (27 loc) · 456 Bytes
id title
prefer-no-engineStrict
prefer-no-engineStrict

Enabling this rule will result in an error being generated if engineStrict is present.

Example .npmpackagejsonlintrc configuration

{
  "rules": {
    "prefer-no-engineStrict": "error"
  }
}

Rule Details

Incorrect example(s)

{
  "engineStrict": "dummy-value"
}

Correct example(s)

{

}

History

  • Introduced in version 1.3.0