vile-tslint
v0.3.6
Published
Identify errors and common style/maintainability issues in your TypeScript code.
Downloads
52
Readme
vile-tslint
A Vile plugin for identifying errors and common style/maintainability issues in your TypeScript code (via TSLint).
Requirements
Installation
npm i -D vile vile-tslint
Usage
configure TSLint
npx tslint --init
run the plugin
npx vile a -p tslint
Config
Currently, config is read from any tslint
config file picked up via
tslint.Configuration.findConfiguration
.
You can specify a custom config file path in your .vile.yml
:
tslint:
config: some_custom_file_path.json
Ignoring Files
You can specify tslint
specific ignores:
tslint:
ignore:
- dir
- file.ts
Allowing Files
You can set vile.allow
or tslint.allow
:
Example:
tslint:
allow:
- src
Versioning
This project uses Semver.
Licensing
This project is licensed under the MPL-2.0 license.
Any contributions made to this project are made under the current license.
Contributions
Current list of Contributors.
Any contributions are welcome and appreciated!
All you need to do is submit a Pull Request.
- Please consider tests and code quality before submitting.
- Please try to keep commits clean, atomic and well explained (for others).
Issues
Current issue tracker is on GitHub.
Even if you are uncomfortable with code, an issue or question is welcome.
Code Of Conduct
By participating in this project you agree to our Code of Conduct.
Maintainers
- Brent Lintner - @brentlintner
Architecture
This project is currently written in JavaScript.
bin
any shell based scriptssrc
source codelib
transpiled lib
Developing
cd vile-tslint
npm install
npm run