Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Sep 26, 2024
1 parent 5ab5082 commit b6fd80c
Show file tree
Hide file tree
Showing 41 changed files with 41 additions and 41 deletions.
2 changes: 1 addition & 1 deletion packages/process_run/lib/cmd_run.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Prefer using shell
library process_run.cmd_run;
library;

///
/// Command runner
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/lib/dartbin.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/// {@canonicalFor dartbin.dartChannel}
/// {@canonicalFor dartbin.dartExecutable}
/// {@canonicalFor dartbin.dartVersion}
library process_run.dartbin;
library;

export 'package:process_run/src/flutterbin_cmd.dart'
show
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/lib/shell.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/// {@canonicalFor shell_utils.userHomePath}
/// {@canonicalFor user_config.userPaths}
/// {@canonicalFor process_run.runExecutableArguments}
library process_run.shell;
library;

export 'package:process_run/dartbin.dart'
show
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/lib/src/shell_utils_common.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library process_run.src.shell_utils_common;
library;

import 'dart:async';
import 'dart:convert';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/lib/src/shell_utils_io.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library process_run.src.shell_utils_io;
library;

import 'package:path/path.dart';
import 'package:process_run/src/io/io.dart';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/bin/bin_shell_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.test.bin.shell_bin_test;
library;

import 'package:process_run/shell.dart';
import 'package:process_run/src/bin/shell/env_file_content.dart';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/bin/compiled_bin_shell_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.test.bin.shell_bin_test;
library;

import 'package:process_run/shell.dart';
import 'package:process_run/src/bin/shell/import.dart';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/build_runner_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.dartfmt_test;
library;

import 'package:process_run/cmd_run.dart';
import 'package:test/test.dart';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/cmd_run_api_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.test.cmd_run_api_test;
library;

import 'package:process_run/cmd_run.dart';
import 'package:test/test.dart';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/cmd_run_exception_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.cmd_run_exception_test;
library;

import 'dart:io';

Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/cmd_run_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.cmd_run_test;
library;

import 'dart:io';

Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/compile_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run_test_windows_test;
library;

import 'dart:io';

Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/dart_compile_js_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.dart2js_test;
library;

import 'dart:io';
import 'dart:mirrors';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/dart_doc_test.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ignore_for_file: avoid_print

@TestOn('vm')
library process_run.dartdoc_test;
library;

import 'package:path/path.dart';
import 'package:process_run/cmd_run.dart';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/dartbin_api_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.dartbin_api_test;
library;

import 'package:process_run/dartbin.dart';
import 'package:test/test.dart';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/dartbin_cmd_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.dartbin_cmd_test;
library;

import 'package:process_run/cmd_run.dart';
import 'package:process_run/shell.dart';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/dartbin_cmd_verbose_test_.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.dartbin_cmd_verbose_test;
library;

import 'package:process_run/cmd_run.dart' show runCmd;
import 'package:process_run/src/dartbin_cmd.dart';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/dartbin_test.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ignore_for_file: avoid_print

@TestOn('vm')
library process_run.dartbin_test;
library;

import 'dart:io';

Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/doc_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.doc_test;
library;

import 'package:process_run/shell_run.dart';
import 'package:test/test.dart';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/echo_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.echo_test;
library;

import 'dart:convert';
import 'dart:io';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/flutterbin_cmd_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.flutterbin_cmd_test;
library;

import 'dart:io';

Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/flutterbin_impl_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.flutterbin_cmd_test;
library;

import 'package:process_run/src/flutterbin_cmd.dart';
// ignore: import_of_legacy_library_into_null_safe
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/package_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.pub_test;
library;

import 'package:path/path.dart';
import 'package:process_run/package/package.dart';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/process_cmd_api_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.test.process_cmd_api_test;
library;

import 'package:process_run/process_cmd.dart';
import 'package:test/test.dart';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/process_cmd_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.process_cmd_test;
library;

import 'dart:convert';
import 'dart:io';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/process_run_in_test2_.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ignore_for_file: avoid_print

@TestOn('vm')
library process_run.process_run_in_test2_;
library;

import 'dart:async';

Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/process_run_in_test_.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ignore_for_file: avoid_print

@TestOn('vm')
library process_run.process_run_in_test;
library;

import 'package:process_run/process_run.dart';
import 'package:test/test.dart';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/process_run_out_test_.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.process_run_out_test;
library;

import 'dart:io';

Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/process_run_test.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ignore_for_file: avoid_print

@TestOn('vm')
library process_run.process_run_test;
library;

import 'dart:async';
import 'dart:convert';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/pub_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.pub_test;
library;

import 'package:path/path.dart';
import 'package:process_run/cmd_run.dart';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/shell_common_api_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library process_run.test.shell_common_api_test;
library;

import 'package:process_run/src/mixin/shell_common.dart';
import 'package:test/test.dart';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/shell_common_test.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ignore_for_file: avoid_print

library process_run.test.shell_common_api_test;
library;

import 'dart:async';
import 'dart:io';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/shell_environment_test.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ignore_for_file: avoid_print

@TestOn('vm')
library process_run.test.shell_environment_test;
library;

import 'dart:convert';
import 'dart:io';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/shell_lines_controller_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.test.shell_test;
library;

import 'package:process_run/shell.dart';
import 'package:process_run/src/common/import.dart';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/shell_run_test.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ignore_for_file: avoid_print

@TestOn('vm')
library process_run.test.shell_run_test;
library;

import 'dart:io';

Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/shell_test.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ignore_for_file: avoid_print

@TestOn('vm')
library process_run.test.shell_test;
library;

import 'dart:convert';
import 'dart:io';
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/src_dartbin_cmd_test.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// TODO non vm
//@TestOn('vm')
library process_run.test.src_dart_bin_cmd_test;
library;

import 'package:process_run/dartbin.dart';
import 'package:process_run/src/dartbin_cmd.dart'
Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/src_shell_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.test.src_shell_test;
library;

import 'package:test/test.dart';

Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/src_shell_utils_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.test.src_shell_utils_test;
library;

import 'dart:convert';

Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/src_user_config_test.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@TestOn('vm')
library process_run.test.src_user_config_test;
library;

import 'dart:io';

Expand Down
2 changes: 1 addition & 1 deletion packages/process_run/test/which_test.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ignore_for_file: avoid_print

@TestOn('vm')
library process_run.which_test;
library;

import 'dart:io';

Expand Down

0 comments on commit b6fd80c

Please sign in to comment.