Jakub Frej

Results 9 comments of Jakub Frej

Ok, I see how I got it a bit wrong. The results table mentions inline styles, so perhaps the test case is not wrong but I consider it misleading. I...

@streamich Here are the results: https://github.com/jfrej/CSS-IN-JS-Benchmarks/blob/fairer-tests-results/RESULT.md emotion and cxs still doing well I'll have to rerun it, though. Some tests returned NaN Also, these are not the latest lib versions....

Btw, regarding: ``` // for some reason, the "]" does not appear either! // that's why I am adding it to the label label: "] Logs", ``` It's because you...

I ran into the same problem running React with babel, webpack and karma. What solved it was switching from `istanbul-instrumenter-loader` to `babel-plugin-istanbul`

Ah, fair point about variables. How about this: "padding-line-between-statements": [ "error", { "blankLine": "always", "prev": "*", "next": [ "block", "block-like", "cjs-export", "class", "const", "export", "import", "let", "var" ] }, {...

Actually, I've just searched the guide and it's not clear whether blank lines after variable declarations are required or not. [19.7](https://github.com/airbnb/javascript#whitespace--after-blocks) only talks about variables using blocks. Do you have...

That code was breaking because my rules required a blank line both before and after blocks. I believe the following matches the rules as described in the guide: ``` 'padding-line-between-statements':...

@DKavaliou-by this issue is about modifying the Airbnb ESLint config to match the rules described in the Airbnb JavaScript code style guide (section 19.7). The issue you linked to describes...