0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-01 23:52:40 +00:00

Fix multiline IMG tags breaking

This commit is contained in:
Trevor Buckner
2020-05-08 13:15:35 -04:00
parent 62f549f038
commit a0e92b54d0
2 changed files with 63 additions and 57 deletions

View File

@@ -9,6 +9,7 @@ module.exports = {
},
env : {
browser : true,
node: true
},
plugins : ['react'],
rules : {
@@ -66,7 +67,7 @@ module.exports = {
multiLine : { beforeColon: true, afterColon: true, align: 'colon' },
singleLine : { beforeColon: false, afterColon: true }
}],
'linebreak-style' : ['warn', 'unix'],
'linebreak-style' : 'off',
'no-trailing-spaces' : 'warn',
'no-whitespace-before-property' : 'warn',
'object-curly-spacing' : ['warn', 'always'],
@@ -74,4 +75,4 @@ module.exports = {
'space-in-parens' : ['warn', 'never'],
'template-curly-spacing' : ['warn', 'never'],
}
};
};