We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd7848d commit 4a003f5Copy full SHA for 4a003f5
1 file changed
README.md
@@ -862,6 +862,21 @@ export default antfu({
862
})
863
```
864
865
+### Prettier
866
+
867
+If you're using prettier outside eslint, you can disable the config via etc:
868
869
+```js
870
+import antfu from '@antfu/eslint-config'
871
+import prettierConflicts from 'eslint-config-prettier'
872
873
+export default antfu({
874
+ rules: {
875
+ 'some-rule': 'off'
876
+ }
877
+}, prettierConflicts);
878
+```
879
880
### Editor Specific Disables
881
882
Auto-fixing for the following rules are disabled when ESLint is running in a code editor:
0 commit comments