react-native-webview.git

.prettierrc.js 398B

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