mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2025-12-23 22:18:36 -05:00
16 lines
347 B
JavaScript
16 lines
347 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: "@react-native-community",
|
|
rules: {
|
|
quotes: [2, "double"],
|
|
"comma-dangle": [2, "never"],
|
|
"space-in-parens": [2, "always"],
|
|
"prettier/prettier": 0
|
|
},
|
|
// need this so jest doesn't show as undefined in jest.setup.js
|
|
env: {
|
|
"jest": true
|
|
},
|
|
ignorePatterns: ["/coverage/*"]
|
|
};
|