@typescript-eslint/prefer-namespace-keyword

This commit is contained in:
Alexander T
2019-06-14 14:52:36 +03:00
parent a18aeee1eb
commit 6b05b26452
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -44,7 +44,7 @@
"@typescript-eslint/prefer-for-of": "error",
"@typescript-eslint/prefer-function-type": "off",
"@typescript-eslint/prefer-interface": "error",
"@typescript-eslint/prefer-namespace-keyword": "off",
"@typescript-eslint/prefer-namespace-keyword": "error",
"semi": "off",
"@typescript-eslint/semi": "error",
"@typescript-eslint/type-annotation-spacing": "error",
+1 -2
View File
@@ -7,8 +7,7 @@
// as a command line argument and the resulting Markdown is written to standard output. The
// tool recognizes the specific Word styles used in the TypeScript Language Specification.
module Word {
namespace Word {
export interface Collection<T> {
count: number;
item(index: number): T;