mirror of
https://github.com/status-im/react-native-webview.git
synced 2025-02-22 16:58:34 +00:00
Rewrote the whole repository into typescript. This will provide way better and up to date documentation. This should also add some safety for people contributing 😄 . Flow types were not working until now which is why this PR doesn't have them but feel free to PR. This also fixes #384 #435 #206 #171 #168.
11 lines
325 B
JavaScript
11 lines
325 B
JavaScript
// https://prettier.io/docs/en/options.html
|
|
|
|
module.exports = {
|
|
// Enables semicolons at the end of statements
|
|
semi: true,
|
|
// Formats strings with single quotes ('') instead of quotes ("")
|
|
singleQuote: true,
|
|
// Adds a trailing comma at the end of all lists (including function arguments)
|
|
trailingComma: 'all',
|
|
};
|