From 9b9bba3fb1d0ea9eeed2c906edbd257b3709726e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristj=C3=A1n=20Oddsson?= Date: Tue, 24 Mar 2020 15:32:55 +0000 Subject: [PATCH] turn eslint `camelcase` rule off in typescript config --- lib/configs/typescript.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/configs/typescript.js b/lib/configs/typescript.js index 63d03b80..06db438c 100644 --- a/lib/configs/typescript.js +++ b/lib/configs/typescript.js @@ -3,6 +3,7 @@ module.exports = { parser: '@typescript-eslint/parser', plugins: ['@typescript-eslint', 'github'], rules: { + camelcase: 'off', '@typescript-eslint/array-type': ['error', {default: 'array-simple'}], '@typescript-eslint/no-use-before-define': 'off', '@typescript-eslint/explicit-member-accessibility': 'off',