ci: spellcheck: Ignore some unrecognized words

This commit is contained in:
Calcitem 2021-11-23 23:58:02 +08:00 committed by Nikolas Rimikis
parent 130a720985
commit f5feea1db6
3 changed files with 10 additions and 2 deletions

View File

@ -16,6 +16,7 @@ Arial
asm asm
attr attr
autobuild autobuild
autofocus
AVX AVX
backend backend
bak bak
@ -63,12 +64,15 @@ cwd
cygwin cygwin
Dalmax Dalmax
DANDROID DANDROID
dartpad
datastore datastore
dbg dbg
deduplicate
DEFAULTTONEAREST DEFAULTTONEAREST
deque deque
dest dest
devicelocale devicelocale
Diagnosticable
Dieharder Dieharder
DISCARDABLE DISCARDABLE
dll dll
@ -104,6 +108,7 @@ FILEOS
FILESUBTYPE FILESUBTYPE
FILEVERSION FILEVERSION
firstguess firstguess
flexbox
fluentui fluentui
FONTCHANGE FONTCHANGE
FPKV FPKV
@ -327,6 +332,7 @@ responsponds
Resync Resync
rng rng
rotr rotr
RRect
rtl rtl
runloop runloop
sanmill sanmill
@ -419,6 +425,7 @@ TEXTINCLUDE
timeb timeb
tmp tmp
TODO TODO
toggleable
tolower tolower
toolbar toolbar
tooltip tooltip
@ -467,6 +474,7 @@ wmd
Wnd Wnd
WNDCLASS WNDCLASS
wparam wparam
writeln
wstring wstring
www www
XCRASH XCRASH

View File

@ -166,7 +166,7 @@ class PersonalizationSettingsPage extends StatelessWidget {
onChanged: (val) => LocalDatabaseService.colorSettings = onChanged: (val) => LocalDatabaseService.colorSettings =
_colorSettings.copyWith(drawerColor: val), _colorSettings.copyWith(drawerColor: val),
), ),
// TODO: [Leptopdoa] add databse migration for drawerBackgroundColor // TODO: [Leptopdoa] add database migration for drawerBackgroundColor
_ColorSelectorListTile( _ColorSelectorListTile(
title: S.of(context).drawerTextColor, title: S.of(context).drawerTextColor,
value: LocalDatabaseService.colorSettings.drawerTextColor, value: LocalDatabaseService.colorSettings.drawerTextColor,

View File

@ -76,7 +76,7 @@ class Constants {
} }
// TODO: [Leptopoda] we should only save the threshold and compute the bool right in place with MediaQuery.of(context) // TODO: [Leptopoda] we should only save the threshold and compute the bool right in place with MediaQuery.of(context)
// TODO: [Leptopoda] make use of flexboxes so we don't need those values // TODO: [Leptopoda] make use of flexbox so we don't need those values
bool get isSmallScreen => Constants.windowHeight <= 800; bool get isSmallScreen => Constants.windowHeight <= 800;
bool get isLargeScreen => !isSmallScreen; bool get isLargeScreen => !isSmallScreen;