diff --git a/prettier/index.js b/prettier/index.js index 4dabf0b..fdb6d81 100644 --- a/prettier/index.js +++ b/prettier/index.js @@ -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, - }, - }, - ], -}; \ No newline at end of file + semi: true, + trailingComma: 'all', + singleQuote: true, + printWidth: 150, + tabWidth: 4, + + overrides: [ + { + files: ['*.yml', '*.yaml'], + options: { + bracketSpacing: false, + tabWidth: 2, + }, + }, + ], +}