dartfmt
diff --git a/.travis.yml b/.travis.yml
index 85cef18..5eab673 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,13 +1,12 @@
 language: dart
 
 dart:
-  - 2.0.0
-  - stable
-  - dev
+- 2.0.0
+- dev
 
 dart_task:
-  - test: -p vm
-  - dartanalyzer: --fatal-infos --fatal-warnings .
+- test: -p vm
+- dartanalyzer: --fatal-infos --fatal-warnings .
 
 matrix:
   include:
@@ -20,4 +19,4 @@
 
 cache:
   directories:
-    - $HOME/.pub-cache
+  - $HOME/.pub-cache
diff --git a/analysis_options.yaml b/analysis_options.yaml
index b487747..c356c2b 100644
--- a/analysis_options.yaml
+++ b/analysis_options.yaml
@@ -33,7 +33,6 @@
     - prefer_generic_function_type_aliases
     - prefer_is_not_empty
     - slash_for_doc_comments
-    - super_goes_last
     - test_types_in_equals
     - throw_in_finally
     - type_init_formals
diff --git a/test/test_utils.dart b/test/test_utils.dart
index e5236a7..cd6c1e5 100644
--- a/test/test_utils.dart
+++ b/test/test_utils.dart
@@ -129,9 +129,9 @@
 
   @override
   final description = "This command has a long description that needs to be "
-      "wrapped sometimes.\nIt has embedded newlines,\n"
-      "     and indented lines that also need to be wrapped and have their "
-      "indentation preserved.\n" +
+          "wrapped sometimes.\nIt has embedded newlines,\n"
+          "     and indented lines that also need to be wrapped and have their "
+          "indentation preserved.\n" +
       ("0123456789" * 10);
 
   @override
diff --git a/test/utils_test.dart b/test/utils_test.dart
index 71f28fe..035289e 100644
--- a/test/utils_test.dart
+++ b/test/utils_test.dart
@@ -8,11 +8,11 @@
 const _lineLength = 40;
 const _longLine = "This is a long line that needs to be wrapped.";
 final _longLineWithNewlines = "This is a long line with newlines that\n"
-    "needs to be wrapped.\n\n" +
+        "needs to be wrapped.\n\n" +
     "0123456789" * 5;
 final _indentedLongLineWithNewlines =
     "    This is an indented long line with newlines that\n"
-        "needs to be wrapped.\n\tAnd preserves tabs.\n      \n  " +
+            "needs to be wrapped.\n\tAnd preserves tabs.\n      \n  " +
         "0123456789" * 5;
 const _shortLine = "Short line.";
 const _indentedLongLine = "    This is an indented long line that needs to be "