From 320a8d31c16c8ae07cc439aa4689865795f1680d Mon Sep 17 00:00:00 2001 From: Daniel Gasienica Date: Fri, 13 Apr 2018 22:07:20 -0400 Subject: [PATCH] TSLint: Allow multiline JS in JSX for CSS-in-JS --- tslint.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tslint.json b/tslint.json index 79b541435..e6a8920b4 100644 --- a/tslint.json +++ b/tslint.json @@ -15,6 +15,11 @@ "import-spacing": false, "indent": [true, "spaces", 2], "interface-name": [true, "never-prefix"], + + // Allows us to write inline `style`s. Revisit when we have a more sophisticated + // CSS-in-JS solution: + "jsx-no-multiline-js": false, + "linebreak-style": [true, "LF"], // Ignore `import`s to allow Prettier formatting: