Skip to content

Commit

Permalink
Adjust prettier config with semi
Browse files Browse the repository at this point in the history
  • Loading branch information
terjeofnorway committed Sep 2, 2024
1 parent 1a6ed4b commit 30bbc77
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions prettier/index.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
module.exports = {
semi: false,
trailingComma: "all",
singleQuote: true,
printWidth: 120,
tabWidth: 4,
overrides: [
{
files: ["*.yml", "*.yaml"],
options: {
bracketSpacing: false,
tabWidth: 2,
},
},
],
};
semi: true,
trailingComma: 'all',
singleQuote: true,
printWidth: 150,
tabWidth: 4,

overrides: [
{
files: ['*.yml', '*.yaml'],
options: {
bracketSpacing: false,
tabWidth: 2,
},
},
],
}

0 comments on commit 30bbc77

Please sign in to comment.