declare const config: {
  printWidth: 100
  semi: false
  singleQuote: true
  quoteProps: 'consistent'
  bracketSpacing: false
  plugins: ['prettier-plugin-packagejson']
  overrides: (
    | {
        files: ['*.json5']
        options: {
          quoteProps: 'preserve'
          singleQuote: false
        }
      }
    | {
        files: ['*.yml']
        options: {
          singleQuote: false
          quoteProps?: undefined
        }
      }
  )[]
  endOfLine: 'lf'
  tabWidth: 2
  useTabs: false
}
export default config

export {}
