chore: add import/newline-after-import lint rule

This commit is contained in:
Fredrik Adelöw
2020-07-02 11:05:59 +02:00
parent da6dbc7af0
commit 7389f326d9
32 changed files with 35 additions and 3 deletions
+1
View File
@@ -15,4 +15,5 @@
*/
import '@testing-library/jest-dom/extend-expect';
require('jest-fetch-mock').enableMocks();
+1
View File
@@ -16,6 +16,7 @@
import React, { FC, useReducer, Dispatch, Reducer } from 'react';
import { circleCIApiRef } from '../api';
import type { State, Action, SettingsState } from './types';
export type { SettingsState };
export const AppContext = React.createContext<[State, Dispatch<Action>]>(