File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 88 "ecmaVersion" : 2018 ,
99 "sourceType" : " module"
1010 },
11- "plugins" : [" @typescript-eslint" ],
11+ "plugins" : [
12+ " @typescript-eslint" ,
13+ " simple-import-sort"
14+ ],
1215 "extends" : [
1316 " prettier" ,
1417 " prettier/react" ,
3033 "@typescript-eslint/prefer-interface" : " off" ,
3134 "@typescript-eslint/interface-name-prefix" : " off" ,
3235 "@typescript-eslint/camelcase" : " off" ,
36+ "simple-import-sort/sort" : " warn" ,
3337 "no-console" : " off" ,
3438 "sort-keys" : " off" ,
3539 "sort-imports" : " off"
3842 "browser" : true ,
3943 "es6" : true
4044 }
41- }
45+ }
Original file line number Diff line number Diff line change 1- import React from 'react' ;
21import { render } from '@testing-library/react' ;
2+ import React from 'react' ;
33
44import App from './App' ;
55
Original file line number Diff line number Diff line change 1+ import './App.scss' ;
2+
13import React from 'react' ;
24
35import logo from './logo.svg' ;
4- import './App.scss' ;
56
67function App ( ) {
78 return (
Original file line number Diff line number Diff line change 1+ import './index.scss' ;
2+
13import React from 'react' ;
24import ReactDOM from 'react-dom' ;
35
4- import './index.scss' ;
56import App from './App' ;
67import * as serviceWorker from './serviceWorker' ;
78
You can’t perform that action at this time.
0 commit comments