Skip to content

Commit

Permalink
Fix analyzer issues (halildurmus#771)
Browse files Browse the repository at this point in the history
  • Loading branch information
halildurmus authored Oct 20, 2023
1 parent 7054403 commit aa0f231
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion example/update_resource.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

/// Updates a Dart executable with a manifest.
// Updates a Dart executable with a manifest.

import 'dart:io';

Expand Down
22 changes: 11 additions & 11 deletions lib/src/types.dart
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/// Simple data types that are commonly used as aliases for C/C++ primitive data
/// types in Win32 development.
///
/// These can be used for FFI pointer allocation, for example:
///
/// ```dart
/// final returnValue = calloc<DWORD>();
/// ```
///
/// For more on Windows data types, see
/// https://learn.microsoft.com/windows/win32/winprog/windows-data-types.
// Simple data types that are commonly used as aliases for C/C++ primitive data
// types in Win32 development.
//
// These can be used for FFI pointer allocation, for example:
//
// ```dart
// final returnValue = calloc<DWORD>();
// ```
//
// For more on Windows data types, see
// https://learn.microsoft.com/windows/win32/winprog/windows-data-types.

// ignore_for_file: camel_case_types

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dev_dependencies:
args: ^2.4.2

# Help ensure that the code is well-written.
lints: ">=2.1.1 <4.0.0"
lints: '^3.0.0'

# Used for joining paths, as part of our path_provider integration test.
path: ^1.8.3
Expand Down

0 comments on commit aa0f231

Please sign in to comment.