TSLint: Allow multiline JS in JSX for CSS-in-JS

pull/1/head
Daniel Gasienica 7 years ago
parent cd2a02a626
commit 320a8d31c1

@ -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:

Loading…
Cancel
Save