Skip to content

Commit 7857e8b

Browse files
disable comma-dangle rule for now
1 parent 0dcc733 commit 7857e8b

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

rules/react.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -181,16 +181,16 @@ module.exports = {
181181
'react/prop-types': 'off',
182182
'react/require-default-props': 'off',
183183
//matching prettier es5 rules
184-
'@typescript-eslint/comma-dangle': [
185-
'error',
186-
{
187-
arrays: 'always-multiline',
188-
objects: 'always-multiline',
189-
imports: 'always-multiline',
190-
exports: 'always-multiline',
191-
functions: 'never'
192-
}
193-
],
184+
// '@typescript-eslint/comma-dangle': [
185+
// 'error',
186+
// {
187+
// arrays: 'always-multiline',
188+
// objects: 'always-multiline',
189+
// imports: 'always-multiline',
190+
// exports: 'always-multiline',
191+
// functions: 'never'
192+
// }
193+
// ],
194194
'no-unexpected-multiline': 'error',
195195
'react/no-unstable-nested-components': 'off'
196196
}

0 commit comments

Comments
 (0)