We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consistent import ... statements throughout the project.
import ...
The general groupings should be:
import React ... any other react specific imports (ex: react-router-dom) React bootstrap, Firestore, other 3rd party imports Local file imports
Within each of the sections, the order of the import "types" should be from least to most specific. Example:
import 'file.js'; import * as File from 'file.js'; import File from 'file.js'; import { Func } from 'file.js';
Inconsistencies between (and potentially within) the user auth, activities, and trips sections of SLURP. First pointed out in PR #82 comments.
The text was updated successfully, but these errors were encountered:
anan-ya-y
keiffer01
zghera
No branches or pull requests
Issue summary
Consistent
import ...
statements throughout the project.Expected behavior
The general groupings should be:
Within each of the sections, the order of the import "types" should be from least to most specific. Example:
Actual behavior
Inconsistencies between (and potentially within) the user auth, activities, and trips sections of SLURP. First pointed out in PR #82 comments.
The text was updated successfully, but these errors were encountered: