Skip to content
New issue

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

UIP-2512 Add more utils from over_react #11

Merged
merged 14 commits into from
Jul 24, 2017
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ When coming up with test ID strings:

## Documentation

You would never skip reading the docs for a new language you are asked to learn, so _please_ don't skip over reading these, either.
You would never skip reading the docs for a new language you are asked to learn,
so _please_ don't skip over reading [our API documentation][api-docs] either.

+ In-depth Dart doc comments for components props and utilities are available, for use when browsing and autocompleting code in an IDE.

## Contributing

Expand All @@ -127,5 +127,6 @@ The `over_react_test` library adheres to [Semantic Versioning](http://semver.org



[api-docs]: https://www.dartdocs.org/documentation/over_react_test/1.0.0/over_react_test/over_react_test-library.html
[contributing-docs]: https://github.com/Workiva/over_react/blob/master/.github/CONTRIBUTING.md
[over-react]: https://github.com/Workiva/over_react
6 changes: 3 additions & 3 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ linter:
- no_adjacent_strings_in_list
- no_duplicate_case_values
# - non_constant_identifier_names
- omit_local_variable_types
# - omit_local_variable_types
# - one_member_abstracts
- only_throw_errors
# - overridden_fields
Expand All @@ -46,10 +46,10 @@ linter:
- prefer_collection_literals
- prefer_const_constructors
- prefer_contains
- prefer_expression_function_bodies
# - prefer_expression_function_bodies
# - prefer_final_fields
# - prefer_final_locals
- prefer_function_declarations_over_variables
# - prefer_function_declarations_over_variables
Copy link
Contributor

@greglittlefield-wf greglittlefield-wf Jul 13, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why was this lint disabled? Seems like it'd be valuable to keep enabled.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To get rid of noisy lints that we have no intention of addressing.

If someone wants to address them, thats cool - but the analyzer view within the IDE is most useful when it is empty when you start your work.

- prefer_initializing_formals
- prefer_interpolation_to_compose_strings
- prefer_is_empty
Expand Down
7 changes: 6 additions & 1 deletion lib/over_react_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,13 @@
// See the License for the specific language governing permissions and
// limitations under the License.

export 'src/over_react_test/common_component_util.dart';
export 'src/over_react_test/custom_matchers.dart';
export 'src/over_react_test/dom_util.dart';
export 'src/over_react_test/jacket.dart';
export 'src/over_react_test/js_component.dart';
export 'src/over_react_test/react_util.dart';
export 'src/over_react_test/string_util.dart';
export 'src/over_react_test/validation_util.dart';
export 'src/over_react_test/wrapper_component.dart';
export 'src/over_react_test/jacket.dart';
export 'src/over_react_test/zone_util.dart';
Loading