diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-14 11:04:05 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-14 11:04:05 +0300 |
commit | e5631d6bbbbc34fa4975424cd46ac1eadedf9880 (patch) | |
tree | ca2ae30110510882a22ec1fc533f2a8cbe18cf01 /src | |
parent | 9a518ccf7e50deb0ce80bd8b332baff6e6881278 (diff) | |
download | eslint-config-e5631d6bbbbc34fa4975424cd46ac1eadedf9880.tar.xz eslint-config-e5631d6bbbbc34fa4975424cd46ac1eadedf9880.zip |
feat(typescript): Rule "no-use-before-define"
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'src')
-rw-r--r-- | src/rules/typescript/default.json | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/rules/typescript/default.json b/src/rules/typescript/default.json index 39ea233..913d9be 100644 --- a/src/rules/typescript/default.json +++ b/src/rules/typescript/default.json @@ -90,6 +90,16 @@ "@typescript-eslint/no-unused-vars-experimental": [ "error" ], + "@typescript-eslint/no-use-before-define": [ + "error", + { + "classes": true, + "enums": true, + "functions": true, + "typedefs": true, + "variables": true + } + ], "@typescript-eslint/no-useless-constructor": [ "error" ], @@ -150,6 +160,9 @@ "no-unused-vars": [ "off" ], + "no-use-before-define": [ + "off" + ], "no-useless-constructor": [ "off" ], |