One line spacing is not enough. It does not let us distinct global code areas ``` import tada from 'tada'; import moment from 'moment'; export const App = () => { console.log(1); console.log(2); doSth(); } ``` 2 lines between big things (import, main declaration, export...), 1 line between methods internal is imho the way to go.
One line spacing is not enough. It does not let us distinct global code areas
2 lines between big things (import, main declaration, export...), 1 line between methods internal is imho the way to go.