JSPM

eslint-config-promer94

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4
  • Score
    100M100P100Q21618F
  • License MIT

eslint-fe

Package Exports

  • eslint-config-promer94

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (eslint-config-promer94) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Install

$ npm install --save-dev @typescript-eslint/parser @typescript-eslint/eslint-plugin eslint-config-prettier eslint-config-xo eslint-config-xo-react eslint-config-xo-space eslint-config-xo-typescript eslint-plugin-prettier eslint-plugin-react eslint-plugin-react-hooks

Standalone Usage

Add some ESLint config to your package.json (or .eslintrc):

{
    "name": "my-awesome-project",
    "eslintConfig": {
        "extends": [
            "promer94"
        ]
    }
}

Note: If your tsconfig.json is not in the same directory as package.json, you will have to set the path yourself:

{
    "name": "my-awesome-project",
    "eslintConfig": {
        "extends": [
            "promer94"
        ],
        "parserOptions": {
            "project": "some-path/tsconfig.json"
        }
    }
}