@zhangwj0520/eslint-config-ts
v0.0.11
Published
TypeScript eslint config presets with prettier
Downloads
16
Readme
@zhangwj0520/eslint-config-ts
TypeScript eslint config presets
this config extends @zhangwj0520/eslint-config-base
Usage
Install
pnpm add -D eslint @zhangwj0520/eslint-config-ts
Config eslint (.eslintrc | .eslintrc.js | .eslintrc.json)
{
"extends": "@zhangwj0520/eslint-config-ts"
}
You don't need .eslintignore normally as it has been provided by the preset.
add import alias
{
"settings": {
"import/resolver": {
"alias": {
// default alias
"map": [
["~", "."],
["@", "./src"]
],
"extensions": [".js", ".jsx", ".mjs", ".ts", ".tsx", "mts", ".d.ts"]
}
}
}
}
Add scripts for package.json
For example:
{
"scripts": {
"lint": "eslint . --fix"
}
}