@suncin/eslint-config-typescript
v1.0.0
Published
A set of recommended eslint rules for typescript projects
Maintainers
Readme
A set of recommended eslint rules for typescript projects
Install
npm install --dev @suncin/eslint-config-typescriptThen extends your eslint file (edit .eslintrc.json)
{
"extends": ["typescript"]
}Other configs
{
"extends": [
"typescript",
"typescript/security",
"typescript/jest"
"typescript/all"
]
}Note: typescript/all include all the previous configs.
Example configuration
{
"extends": ["typescript"],
"plugins": ["filenames"],
"env": {
"node": true
},
"rules": {
"filenames/no-index": "error",
"filenames/match-exported": ["error", "kebab"]
}
}Run tests
npm testAuthor
👤 Jaime Leonardo Suncin Cruz
- Website: https://suncin.me
- Twitter: @jl_suncin
- Github: @leosuncin
- LinkedIn: @jaimesuncin
🤝 Contributing
Contributions, issues and feature requests are welcome!Feel free to check issues page. You can also take a look at the contributing guide.
Show your support
Give a ⭐️ if this project helped you!
📝 License
Copyright © 2020 Jaime Leonardo Suncin Cruz. This project is MIT licensed.
This README was generated with ❤️ by readme-md-generator
