shared-tslint-mnn
v1.1.2
Published
Mib3 common tslint rules
Downloads
4
Readme
Front-End Steps
Step 1: Install shared-tslint-mnn:
npm i shared-tslint-mnn -D
Step 2: Make sure codelyzer and angular-tslint-rules are installed:
npm i codelyzer -D
npm i angular-tslint-rules -D
Step 3: Copy the following in your tslint.json file (This is all the content the file will need):
{
"rulesDirectory": [
"node_modules/codelyzer"
],
"extends": [
"angular-tslint-rules",
"shared-tslint-mnn/tslint/tslint_ng"
]
}
Back-End Steps
Step 1: Install shared-tslint-mnn:
npm i shared-tslint-mnn -D
Step 2: Make sure tslint is installed:
npm i tslint -D
Step 3: Copy the following in your tslint.json file (This is all the content the file will need):
{
"extends": [
"tslint:recommended",
"shared-tslint-mnn/tslint/tslint_node"
]
}