react-native-webview.git

.prettierrc.js 325B

1234567891011
  1. // https://prettier.io/docs/en/options.html
  2. module.exports = {
  3. // Enables semicolons at the end of statements
  4. semi: true,
  5. // Formats strings with single quotes ('') instead of quotes ("")
  6. singleQuote: true,
  7. // Adds a trailing comma at the end of all lists (including function arguments)
  8. trailingComma: 'all',
  9. };