-
-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add history of cigarettes (#121)
* Start ts * Convert all files to TS * Make search work * Make png import work * Add retry * Make api call work * Add long waiting on Loading * Make screens work * Make cigarettes work * Make header work * Reverse geocoding * Make details work * Make search work * Fix reload app * Make tests pass * Run eslint * AqiHistory * Add History manager back * Start getting background location * Remove circular dependency * Fix isSaveNeeded * Add getData for testing * Add clearTable * Fix tests * Update README * Remove vs code settings * Fix too many requests * Add task to save to AsyncStorage * Return correct background fetch response * Refactor a bit the components * Make scroll work nicely * Add shadow on buttons * Make stuff work * Weekly monthly * Calculate cigarettes * Small fixes * Small fixes * Small tweaks with icons * Add more dev info * Reverse geocode in search * Small tweaks * Small tweaks * Update icons
- Loading branch information
1 parent
a5a1a3a
commit 8e8f836
Showing
130 changed files
with
4,138 additions
and
2,431 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
module.exports = { | ||
env: { | ||
jest: true | ||
}, | ||
extends: [ | ||
'prettier', | ||
'prettier/standard', | ||
'prettier/@typescript-eslint', | ||
'semistandard' | ||
], | ||
parser: '@typescript-eslint/parser', | ||
plugins: ['react', '@typescript-eslint'], | ||
rules: { | ||
// https://stackoverflow.com/questions/55280555/typescript-eslint-eslint-plugin-error-route-is-defined-but-never-used-no-un | ||
'@typescript-eslint/no-unused-vars': 'error', | ||
'no-unused-vars': 'off', | ||
'react/jsx-uses-react': 1, | ||
'react/jsx-uses-vars': 1 | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.