Skip to content

Commit

Permalink
changed prettier error options
Browse files Browse the repository at this point in the history
  • Loading branch information
receptiryaki committed Apr 15, 2020
1 parent 0fbefba commit c4c00eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ module.exports = {
],
plugins: ['prettier'],
rules: {
'prettier/prettier': ['warn', prettierOptions],
'prettier/prettier': ['error', prettierOptions],
},
overrides: [
{
files: ['**/*.ts?(x)'],
rules: { 'prettier/prettier': ['error', prettierOptions] },
rules: { 'prettier/prettier': ['warn', prettierOptions] },
},
],
};

0 comments on commit c4c00eb

Please sign in to comment.