draconiandev/website

View on GitHub
.prettierrc.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  arrowParens: 'always',
  bracketSpacing: true,
  overrides: [
    {
      files: '*.mdx',
      options: {
        parser: 'markdown'
      }
    }
  ],
  printWidth: 120,
  singleQuote: true,
  tabWidth: 2
};