From 42dd304bdd71999196a60e4a7608193da75f8a72 Mon Sep 17 00:00:00 2001 From: Alexander T Date: Tue, 20 Aug 2019 11:22:30 +0300 Subject: [PATCH] @typescript-eslint/quotes --- .eslintrc.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 4324d33702d..1f39c29101f 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -16,8 +16,10 @@ "rules": { "@typescript-eslint/adjacent-overload-signatures": "error", "@typescript-eslint/array-type": "error", + "camelcase": "off", "@typescript-eslint/camelcase": ["error", { "properties": "never", "allow": ["^[A-Za-z][a-zA-Za-z]+_[A-Za-z]+$"] }], + "@typescript-eslint/class-name-casing": "error", "@typescript-eslint/consistent-type-definitions": ["error", "interface"], "@typescript-eslint/interface-name-prefix": "error", @@ -27,8 +29,13 @@ "@typescript-eslint/prefer-for-of": "error", "@typescript-eslint/prefer-function-type": "error", "@typescript-eslint/prefer-namespace-keyword": "error", + + "quotes": "off", + "@typescript-eslint/quotes": ["error", "double", { "avoidEscape": true, "allowTemplateLiterals": true }], + "semi": "off", "@typescript-eslint/semi": "error", + "@typescript-eslint/triple-slash-reference": "error", "@typescript-eslint/type-annotation-spacing": "error", "@typescript-eslint/unified-signatures": "error", @@ -96,7 +103,6 @@ "prefer-const": "error", "prefer-object-spread": "error", "quote-props": ["error", "consistent-as-needed"], - "quotes": ["error", "double", { "avoidEscape": true, "allowTemplateLiterals": true }], "space-in-parens": "error", "unicode-bom": ["error", "never"], "use-isnan": "error"