Skip to content

Commit

Permalink
fix: possible prettier incosistence
Browse files Browse the repository at this point in the history
  • Loading branch information
João Antônio Hamerski Copetti committed Jan 11, 2024
1 parent 1138c66 commit 9407d83
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
12 changes: 12 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,18 @@ module.exports = {
ecmaVersion: 'latest',
},
rules: {
'prettier/prettier': [
'error',
{
printWidth: 80,
singleQuote: true,
semi: false,
useTabs: false,
quoteProps: 'consistent',
singleAttributePerLine: true,
tabWidth: 2,
},
],
'vue/html-self-closing': [
'error',
{ html: { component: 'always', void: 'always' } },
Expand Down
9 changes: 0 additions & 9 deletions .prettierrc

This file was deleted.

0 comments on commit 9407d83

Please sign in to comment.