Skip to content

Commit

Permalink
feat: turn off multiline-comment-style
Browse files Browse the repository at this point in the history
  • Loading branch information
RebeccaStevens committed Aug 10, 2019
1 parent 7caf72e commit 605679b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion scripts/generate-eslintrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ const projectConfig = {
{
files: ['*.ts', '*.js'],
rules: {
'multiline-comment-style': 'off',
'functional/immutable-data': 'off',
'functional/no-expression-statement': 'off',
'comma-dangle': 'off'
Expand Down
2 changes: 1 addition & 1 deletion src/default-rules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ export const rules: Linter.Config['rules'] = {
'max-nested-callbacks': ['error', 10],
'max-params': ['error', { max: 6 }],
'max-statements-per-line': ['error', { max: 1 }],
'multiline-comment-style': 'error',
'multiline-comment-style': 'off',
'multiline-ternary': ['error', 'always-multiline'],
'new-cap': ['error', { newIsCap: true, capIsNew: true }],
'new-parens': 'error',
Expand Down

0 comments on commit 605679b

Please sign in to comment.