colouring-montreal/app/tslint.json

19 lines
500 B
JSON
Raw Normal View History

{
2019-08-29 12:54:50 -04:00
"defaultSeverity": "warning",
"rules": {
2019-11-07 02:39:26 -05:00
"eofline": true,
"ordered-imports": [
true,
{
"grouped-imports": true,
"groups": [
2019-11-13 14:20:47 -05:00
{ "name": "css", "match": "\\.css$", "order": 15 },
2019-11-07 02:39:26 -05:00
{ "name": "parent directories", "match": "^\\.\\.", "order": 20 },
{ "name": "current directory", "match": "^\\.", "order": 30 },
{ "name": "libraries", "match": ".*", "order": 10 }
]
}
2019-11-07 03:13:30 -05:00
],
"semicolon": true
2019-08-29 12:54:50 -04:00
}
}