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

View File

@ -166,7 +166,7 @@ class PersonalizationSettingsPage extends StatelessWidget {
onChanged: (val) => LocalDatabaseService.colorSettings =
_colorSettings.copyWith(drawerColor: val),
),
// TODO: [Leptopdoa] add databse migration for drawerBackgroundColor
// TODO: [Leptopdoa] add database migration for drawerBackgroundColor
_ColorSelectorListTile(
title: S.of(context).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] 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 isLargeScreen => !isSmallScreen;