You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use a mixture of single quotes and double quotes for strings, e.g. 'hello' and "world". This passes linting because our .eslintrc file has the flag "quotes": "off".
Let's remove this flag once the typescript branch has been merged, run npm run lint -- --fix and just use single quotes everywhere.
The text was updated successfully, but these errors were encountered:
We use a mixture of single quotes and double quotes for strings, e.g.
'hello'
and"world"
. This passes linting because our.eslintrc
file has the flag"quotes": "off"
.Let's remove this flag once the typescript branch has been merged, run
npm run lint -- --fix
and just use single quotes everywhere.The text was updated successfully, but these errors were encountered: