2017-08-09 17:37:17 +00:00
|
|
|
{
|
|
|
|
|
"extends": "dtslint/dt.json",
|
|
|
|
|
"rules": {
|
2020-02-25 00:06:03 +00:00
|
|
|
"await-promise": false,
|
2017-08-20 22:37:53 +00:00
|
|
|
"no-boolean-literal-compare": false,
|
|
|
|
|
"no-mergeable-namespace": false,
|
2020-02-25 00:06:03 +00:00
|
|
|
"no-namespace": false,
|
2017-09-01 14:47:52 +00:00
|
|
|
"no-unnecessary-generics": false,
|
2017-08-20 22:37:53 +00:00
|
|
|
"no-unnecessary-qualifier": false,
|
[adone] refactoring, new typings (#19812)
* [adone] refactoring, new typings
* refactor to namespace style
* move adone.run to adone.application
* [std] remove unnecessary std.ts code
* move is and x to separate dirs
* init collections, add LinkedList typings, move ExBuffer here
* init event, move EventEmitter and AsyncEmitter here
* init fs
* init fast
* init streams, add core typings
* remove common
* [util] add userdir, LogRotator, debounce, uuid.v3, fix entries
* [shani] add spy.waitFor* definitions
* [is] add descriptions
* [promise] callbackify
* [adone] rename is.exbuffer to is.byteArray
* [adone] add data typings
* [adone] rename is.exdate to is.datetime
* [adone] fs fixes
* [adone] add datetime typings
* [adone] improve datetime help messages
* [adone] math
* decomposition
* add descriptions for Long
* add typings for matrix, simd, BitSet, BigNumber, random
* collections, math
* add some lazify options
* [collections] add help messages for ByteArray
* [collections] add typings for Queue, AsyncQueue, PriorityQueue, FastLRU, Stack, BinarySearchTree, AVLTree, RedBlackTree, ArraySet, BufferList, DefaultMap, LRU, TimedoutMap
* [math] add missing BitSet methods, normalize help messages
* [adone] compressors, fast
* [fast] change FIle.is* methods
* [compressors] init
* [adone] archives, fs, datetime
* [archives] init, tar, zip
* [fs] add AbstractRandomAccessReader, RandomAccessFdReader, RandomAccessBufferReader
* [datetime] add support for ms-dos format
* is, streams, fast
* [fast] fix typo
* [is] fix fast stream predicates, add some runtime predicates
* [streams] more detailed core help messages
2017-09-25 23:17:10 +00:00
|
|
|
"space-before-function-paren": false,
|
2020-02-25 00:06:03 +00:00
|
|
|
"strict-export-declare-modifiers": false,
|
|
|
|
|
"unified-signatures": false
|
2017-08-09 17:37:17 +00:00
|
|
|
}
|
2020-05-15 19:27:10 +00:00
|
|
|
}
|