mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-02 19:34:31 +08:00
19 lines
597 B
JSON
19 lines
597 B
JSON
{
|
|
"extends": "dtslint/dt.json",
|
|
"rules": {
|
|
"only-arrow-functions": false,
|
|
"strict-export-declare-modifiers": false,
|
|
"no-duplicate-imports": false,
|
|
"unified-signatures": false,
|
|
"no-declare-current-package": false,
|
|
|
|
// ERROR: An interface declaring no members is equivalent to its supertype.
|
|
// -- Not true when augmenting an interface
|
|
"no-empty-interface": false,
|
|
|
|
// ERROR: interface name must not have an "I" prefix
|
|
// -- Augmenting @types/mocha which uses "I" prefix
|
|
"interface-name": false
|
|
}
|
|
}
|