Package Exports
- eslint-config-standard-with-typescript
- eslint-config-standard-with-typescript/lib/index
- eslint-config-standard-with-typescript/lib/index.js
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-standard-with-typescript) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
An ESLint shareable config for TypeScript that is based on eslint-config-standard and has TypeScript specific rules from @typescript-eslint/eslint-plugin.
Peer dependencies
This package specifies the following peerDependencies
:
- TypeScript, which you may already have installed
- ESLint
- 3 Peer dependencies of eslint-config-standard
- @typescript-eslint/eslint-plugin; ESLint rules for TypeScript.
Yes, this is a large number of peerDependencies
.
This is due to a known limitation in ESLint.
@typescript-eslint dependencies
This package has @typescript-eslint/parser
in dependencies
.
And it has @typescript-eslint/eslint-plugin
in peerDependencies
.
Both are specified as ranges.
It's probably safest for the installed versions of these packages to be the same.
This can be achieved by:
- Pin (exact version) the
@typescript-eslint/eslint-plugin
inpackage.json
. - Have a
package-lock.json
which locks the version of the@typescript-eslint/parser
sub-dependency.
And both pin/lock to the same version.
npm@<7
npm@<7
does not automatically install peerDependencies
,
so if that's what you're using, install them manually.
Here is an example, but use it only for reference,
because your decisions regarding version ranges and range specifiers may vary.
npm install --save-dev \
typescript@\* \
eslint@^8.0.1 \
eslint-plugin-promise@^6.0.0 \
eslint-plugin-import@^2.25.2 \
eslint-plugin-n@^15.0.0 \
@typescript-eslint/eslint-plugin@^5.0.0 \
eslint-config-standard-with-typescript@latest
Example config
Here is an example .eslintrc.js
:
module.exports = {
extends: 'standard-with-typescript',
parserOptions: {
project: './tsconfig.json'
}
}
Note: Please read some important instructions regarding the project
option here.
There are some more parserOptions
you may care about.
Example command line usage:
$ npx eslint .