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-hooksStandalone 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"
}
}
}