You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generates a [PowerShell](https://en.wikipedia.org/wiki/PowerShell/) script to read the csv data file
609
+
as a dataset variable. It contains the required scripting for the appropriate
610
+
datatypes, and it is meant as a starting point for further script development.
611
+
602
612
Settings
603
613
--------
604
614
Some plug-in settings can be changed in the menu item `Plugins > CSVLint > settings`
@@ -619,7 +629,7 @@ and they are stored in a settings file `%USERPROFILE%\AppData\Roaming\Notepad++\
619
629
| TwoDigitYearMax | Maximum year for two digit year date values. For example, when set to 2024 the year values 24 and 25 will be interpreted as 2024 and 1925. Set as CurrentYear for current year. | CurrentYear |
620
630
| DefaultQuoteChar | Default quote character, typically a double quote " or a single quote ' | " |
621
631
| FontDock | Default font for text boxes in CSV Lint docking window. Changing the font requires closing and opening the CSV docked window. | Courier New, 11.25pt |
622
-
|NullValue| Keyword for empty values or null values in the csv data, case-sensitive. | NaN |
632
+
|NullKeyword| A case-sensitive keyword that will be treated as an empty value, typically `NULL`, `NaN`, `NA` or `None` depending on your data| NaN |
623
633
| SeparatorColor | Include separator in syntax highlighting colors. Set to false and the separator characters are always white. | false |
624
634
| Separators | Preferred characters when automatically detecting the separator character. For special characters like tab, use \\t or hexadecimal escape sequence \\u0009 or \\x09. | ,;\t||
625
635
| TransparentCursor| Transparent cursor line, changing this setting will require a restart of Notepad++ | true |
@@ -658,5 +668,6 @@ History
658
668
16-apr-2023 - v0.4.6.3 Syntax Highlighting fix, new SkipLines feature and quoted string improvements
659
669
02-may-2023 - v0.4.6.4 Comment character and dark mode support
660
670
04-jun-2023 - v0.4.6.5 Support enum/coded values and various updates
671
+
16-dec-2023 - v0.4.6.6 PowerShell support and various updates
0 commit comments