Skip to content

Commit 4bb37a6

Browse files
committed
fix: fixed missing compat, moved jsdoc to dev
1 parent 5e30f12 commit 4bb37a6

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.yarn/install-state.gz

-127 Bytes
Binary file not shown.

packages/eslint-config/config.cjs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ const rules = ['best-practices', 'errors', 'style', 'es6', 'variables'];
66

77
// Base plugin rules
88
const pRules = [
9+
'compat',
910
'eslint-comments',
1011
'import',
11-
'jsdoc',
1212
'json',
1313
'markdown',
1414
'optimize-regex',
@@ -25,13 +25,14 @@ const pRules = [
2525

2626
// Optionals rules based on project dependencies
2727
const depRules = [
28+
'array-func',
2829
'html',
2930
'mdx',
30-
'array-func',
3131
'redux',
3232
'no-unsanitized',
3333
'lodash',
3434
['lodash', 'lodash-fp'],
35+
'jsdoc',
3536
'react',
3637
['mdx', 'eslint-plugin-react'],
3738
['react-a11y', 'react'],
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
extends: ["plugin:compat/recommended"],
3+
};

0 commit comments

Comments
 (0)