TSLint: Allow multiline JS in JSX for CSS-in-JS
This commit is contained in:
parent
cd2a02a626
commit
320a8d31c1
1 changed files with 5 additions and 0 deletions
|
@ -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…
Reference in a new issue