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

This commit is contained in:
Daniel Gasienica 2018-04-13 22:07:20 -04:00
parent cd2a02a626
commit 320a8d31c1

View file

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