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 9c96801 commit 23dccb5Copy full SHA for 23dccb5
.prettierrc
src/configs/js.ts
@@ -7,6 +7,7 @@ import js from '@eslint/js';
7
import tsParser from '@typescript-eslint/parser';
8
import { FlatCompat } from '@eslint/eslintrc';
9
import { fixupPluginRules } from '@eslint/compat';
10
+import prettierOptions from './prettier.config.mjs';
11
import matrixaiPlugin from '../plugins/eslint-plugin-matrixai.js';
12
import { resolveMatrixConfig } from '../utils.js';
13
@@ -66,6 +67,9 @@ const config = [
66
67
},
68
],
69
70
+ // Prettier override
71
+ 'prettier/prettier': ['error', prettierOptions],
72
+
73
// React rules
74
'react/react-in-jsx-scope': 0,
75
'react/no-unknown-property': 'off',
0 commit comments