We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As part of #23 some errors appeared that seem to be a conflict between Prettier and ESLint in the following files:
mauve-dex/.eslintrc.js
Line 9 in 5932302
I didn't dive into the issue as the eslint configuration comes from @uniswap/eslint-config. I disabled the errors (see .eslintrc).
yarn lint
export type SupportedL1ChainId = typeof L1_CHAIN_IDS[number]
should be replaced with
export type SupportedL1ChainId = (typeof L1_CHAIN_IDS)[number]
...src/constants/locales.ts 36:31 error Replace typeof·SUPPORTED_LOCALES with (typeof·SUPPORTED_LOCALES) prettier/prettier
typeof·SUPPORTED_LOCALES
(typeof·SUPPORTED_LOCALES)
Run yarn lint --fix to fix these errors.
yarn lint --fix
Now my IDE complains
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As part of #23
some errors appeared that seem to be a conflict between Prettier and ESLint in the following files:
mauve-dex/.eslintrc.js
Line 9 in 5932302
I didn't dive into the issue as the eslint configuration comes from @uniswap/eslint-config. I disabled the errors (see .eslintrc).
Description
yarn lint
reports errors in the files mentioned above. For exampleshould be replaced with
Run
yarn lint --fix
to fix these errors.Now my IDE complains
The text was updated successfully, but these errors were encountered: