How can I disable the error (prettier/prettier) on eslint?
问题 While coding, I was not using eslint. Now I installed it and it has flooded my editor with prettier/prettier errors, which by no way seem like they make my code prettier. I am looking to find a way to solve this. prettierrc.js: module.exports = { bracketSpacing: true, jsxBracketSameLine: false, singleQuote: true, trailingComma: 'all', }; eslintrc.js: module.exports = { root: true, extends: '@react-native-community', }; And finally, some example code: import React, {Component} from 'react';