diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index 9cae9cfa9..000000000 --- a/.prettierrc +++ /dev/null @@ -1,5 +0,0 @@ -{ - "trailingComma": "all", - "singleQuote": true, - "plugins": ["@chanzuckerberg/prettier-config-edu"] -} diff --git a/prettier.config.js b/prettier.config.js new file mode 100644 index 000000000..562995bb2 --- /dev/null +++ b/prettier.config.js @@ -0,0 +1,9 @@ +const config = require('@chanzuckerberg/prettier-config-edu'); + +module.exports = { + ...config, + + // Override of our shared config. Should we remove this and use the same config as our other + // repos? Doing so would result in a large diff (every file would be updated). + bracketSpacing: true, +};