Skip to content

Commit

Permalink
Tweak markdown lint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Sneath committed Aug 25, 2019
1 parent 4e8c351 commit ec9cb72
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"markdownlint.config":
{
"MD041": false,
}
}
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ A Dart library for building console applications.
This library contains a variety of useful functions for console application
development, including:

- Reading the current window dimensions (height, width)
- Reading and setting the cursor location
- Setting foreground and background colors
- Manipulating the console into "raw mode", which allows more advanced
keyboard input processing than the default `dart:io` library.
- Reading keys and control sequences from the keyboard
- Writing aligned text to the screen
- Reading the current window dimensions (height, width)
- Reading and setting the cursor location
- Setting foreground and background colors
- Manipulating the console into "raw mode", which allows more advanced
keyboard input processing than the default `dart:io` library.
- Reading keys and control sequences from the keyboard
- Writing aligned text to the screen

The library is being used to implement a Dart version of the [Kilo][kilo] text
editor, and is sufficient for a reasonably complete set of usage, including
Expand All @@ -24,6 +24,7 @@ package does not currently work on Windows.
## Usage

A simple example for the `dart_console` package:

```dart
import 'package:dart_console/dart_console.dart';
Expand Down

0 comments on commit ec9cb72

Please sign in to comment.