You'll first need to installESLint: $ npm i eslint --save-dev Next, installeslint-plugin-import-newlines: $ npm install eslint-plugin-import-newlines --save-dev Note:If you installed ESLint globally (using the-gflag) then you must also installeslint-plugin-import-newlinesglobally. ...
Would be useful to enforce the following style: import 'a'; import 'b'; import Bar from 'bar'; import Baz from 'baz'; /** * ^^^ 2 lines between the imports block and the rest ^^^ */ class Foo extends Bar { } 👍10 Activity...