We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76fdefa commit 0c384ccCopy full SHA for 0c384cc
template/.eslintrc
@@ -8,6 +8,6 @@
8
"comma-dangle": ["error", "always-multiline"],
9
"eol-last": ["error", "always"],
10
"semi": ["error", "never"],
11
- "quotes": ["error", "double"]
+ "quotes": ["error", "single"]
12
}
13
template/src/components/App.test.tsx
@@ -1,5 +1,6 @@
1
-import React from 'react'
2
import { render } from '@testing-library/react'
+import React from 'react'
3
+
4
import App from './App'
5
6
test('renders learn react link', () => {
template/src/index.tsx
@@ -13,5 +13,5 @@ ReactDOM.render(
<App />
14
</Router>
15
</Provider>,
16
- document.getElementById("root")
+ document.getElementById('root'),
17
)
0 commit comments