react-native-android-background-geolocation
Version:
A react-native geolocation module for Android, which can run in the foreground and background even the app is terminated.
49 lines • 946 B
JavaScript
module.exports = {
"env": {
"es6": true,
"node": true,
"jest": true,
"react-native/react-native": true,
},
"parser": "babel-eslint",
"extends": [
"eslint:recommended",
"plugin:react/recommended",
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react",
"react-native"
],
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
'no-console': 'off',
'no-unused-vars': [
"error",
{
"args": "none"
},
]
}
};