Stefan

Results 5 comments of Stefan

Having ```json "include": [ "src/**/*" ] ``` and ```js new ForkTsCheckerWebpackPlugin({ // other options watch: false //

I think this should seriously be considered again. Currently prettier transforms this: ```js const css = ` max-width: ${(ITEM_WIDTH * 4) + (ITEM_GUTTER * 3)}px; `; ``` into this: ```js...

Any chance this will be merged? @jamiebuilds

Here's a quick work around for plain postgreSQL that worked for me: ```sql UPDATE table_name SET column_name=(array_remove(column, 'keyword to be removed')) WHERE 'keyword to be removed' = ANY(column_name); ```