forked from kent7301/app-archivist-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
22 lines (21 loc) · 688 Bytes
/
tslint.json
File metadata and controls
22 lines (21 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
* @Author: XY | The Findables Company <ryanxyo>
* @Date: Friday, 17th August 2018 9:51:03 am
* @Email: developer@xyfindables.com
* @Filename: tslint.json
* @Last modified by: ryanxyo
* @Last modified time: Wednesday, 12th December 2018 5:51:12 pm
* @License: All Rights Reserved
* @Copyright: Copyright XY | The Findables Company
*/
{
"extends": ["tslint:latest", "@xyo-network/config-tslint"],
"rules": {
"object-shorthand-properties-first": true,
"align": true,
"max-line-length": [true, {"limit": 120, "ignore-pattern": "^import |^export {(.*?)}"}],
"no-implicit-dependencies": [true, "dev"],
"interface-name":true,
"quotemark": false
}
}