Détail du package

@mediamonks/eslint-config-typescript

mediamonks1.6kMITobsolète1.6.0

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

Sharable eslint config based on Media.Monks Frontend Coding Standards

Media.Monks, eslint, eslint-config, typescript

readme

Media.Monks - eslint-config-typescript

The official Media.Monks eslint configuration, based on the Frontend Coding Standards.

Installation

The configuration can be installed via npm.

npm install --dev @mediamonks/eslint-config-typescript

To inform eslint of this configuration, you have to add the eslint property to your package.json file:

"eslintConfig": {
   "extends": "@mediamonks/eslint-config-typescript",
   "parserOptions": {
      "project": "./tsconfig.json"
   }
}

Instead of manually editing your package.json, you can also utilize the npm pkg subcommand:

npm pkg set eslintConfig.extends=@mediamonks/eslint-config-typescript