CLASPLint 0.4.3__tar.gz → 0.4.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/CLASPLint/__init__.py +2 -2
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/CLASPLint/__main__.py +1 -1
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/CLASPLint/comment_checker.py +1 -1
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/CLASPLint/configuration.py +1 -1
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/CLASPLint/configuration.yaml +879 -3
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/CLASPLint/dict_key_checker.py +1 -1
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/CLASPLint/docstring_checker.py +1 -1
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/CLASPLint/function_checker.py +1 -1
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/CLASPLint/log_checker.py +1 -1
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/CLASPLint/naming_utils.py +1 -1
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/CLASPLint/reporter.py +1 -1
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/CLASPLint/runner.py +1 -1
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/CLASPLint/variable_checker.py +1 -1
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/CLASPLint.egg-info/PKG-INFO +3 -3
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/PKG-INFO +3 -3
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/README.md +2 -2
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/pyproject.toml +1 -1
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/setup.py +2 -2
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/CLASPLint.egg-info/SOURCES.txt +0 -0
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/CLASPLint.egg-info/dependency_links.txt +0 -0
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/CLASPLint.egg-info/entry_points.txt +0 -0
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/CLASPLint.egg-info/not-zip-safe +0 -0
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/CLASPLint.egg-info/top_level.txt +0 -0
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/LICENSE +0 -0
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/MANIFEST.in +0 -0
- {CLASPLint-0.4.3 → CLASPLint-0.4.4}/setup.cfg +0 -0
|
@@ -25,7 +25,7 @@ PROJECT CREATE DATE : 2026-06-17
|
|
|
25
25
|
|
|
26
26
|
PROJECT VERSION DATE : 2026-07-06
|
|
27
27
|
|
|
28
|
-
PROJECT VERSION : 0.4.
|
|
28
|
+
PROJECT VERSION : 0.4.4
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
FILE CREATE DATE : 2026-06-17
|
|
@@ -73,6 +73,6 @@ Sort License:
|
|
|
73
73
|
"""
|
|
74
74
|
|
|
75
75
|
# Define the package version string.
|
|
76
|
-
__version__ = "0.4.
|
|
76
|
+
__version__ = "0.4.4"
|
|
77
77
|
# Expose the runner and reporter modules as the public API.
|
|
78
78
|
__all__ = ["runner", "reporter"]
|
|
@@ -26,14 +26,14 @@ PROJECT CREATE DATE : 2026-06-17
|
|
|
26
26
|
|
|
27
27
|
PROJECT VERSION DATE : 2026-07-06
|
|
28
28
|
|
|
29
|
-
PROJECT VERSION : 0.4.
|
|
29
|
+
PROJECT VERSION : 0.4.4
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
FILE CREATE DATE : 2026-07-06
|
|
33
33
|
|
|
34
|
-
FILE VERSION DATE : 2026-07-
|
|
34
|
+
FILE VERSION DATE : 2026-07-07
|
|
35
35
|
|
|
36
|
-
FILE VERSION : 0.1.
|
|
36
|
+
FILE VERSION : 0.1.3
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
STATUS : Stable
|
|
@@ -1265,6 +1265,882 @@ common_words:
|
|
|
1265
1265
|
- "yet"
|
|
1266
1266
|
# Recognize zero as a complete English word in common vocabulary contexts.
|
|
1267
1267
|
- "zero"
|
|
1268
|
+
# Recognize axis as a complete English word in coordinate and geometric contexts.
|
|
1269
|
+
- "axis"
|
|
1270
|
+
# Recognize flip as a complete English word in mirror and reversal contexts.
|
|
1271
|
+
- "flip"
|
|
1272
|
+
# Recognize lens as a complete English word in optical and camera contexts.
|
|
1273
|
+
- "lens"
|
|
1274
|
+
# Recognize west as a complete English word in cardinal direction contexts.
|
|
1275
|
+
- "west"
|
|
1276
|
+
# Recognize able as a complete English word in common vocabulary contexts.
|
|
1277
|
+
- "able"
|
|
1278
|
+
# Recognize also as a complete English word in common vocabulary contexts.
|
|
1279
|
+
- "also"
|
|
1280
|
+
# Recognize arch as a complete English word in common vocabulary contexts.
|
|
1281
|
+
- "arch"
|
|
1282
|
+
# Recognize army as a complete English word in common vocabulary contexts.
|
|
1283
|
+
- "army"
|
|
1284
|
+
# Recognize away as a complete English word in common vocabulary contexts.
|
|
1285
|
+
- "away"
|
|
1286
|
+
# Recognize ball as a complete English word in common vocabulary contexts.
|
|
1287
|
+
- "ball"
|
|
1288
|
+
# Recognize bank as a complete English word in common vocabulary contexts.
|
|
1289
|
+
- "bank"
|
|
1290
|
+
# Recognize bare as a complete English word in common vocabulary contexts.
|
|
1291
|
+
- "bare"
|
|
1292
|
+
# Recognize barn as a complete English word in common vocabulary contexts.
|
|
1293
|
+
- "barn"
|
|
1294
|
+
# Recognize bath as a complete English word in common vocabulary contexts.
|
|
1295
|
+
- "bath"
|
|
1296
|
+
# Recognize beam as a complete English word in common vocabulary contexts.
|
|
1297
|
+
- "beam"
|
|
1298
|
+
# Recognize bean as a complete English word in common vocabulary contexts.
|
|
1299
|
+
- "bean"
|
|
1300
|
+
# Recognize bear as a complete English word in common vocabulary contexts.
|
|
1301
|
+
- "bear"
|
|
1302
|
+
# Recognize beat as a complete English word in common vocabulary contexts.
|
|
1303
|
+
- "beat"
|
|
1304
|
+
# Recognize beef as a complete English word in common vocabulary contexts.
|
|
1305
|
+
- "beef"
|
|
1306
|
+
# Recognize beer as a complete English word in common vocabulary contexts.
|
|
1307
|
+
- "beer"
|
|
1308
|
+
# Recognize bell as a complete English word in common vocabulary contexts.
|
|
1309
|
+
- "bell"
|
|
1310
|
+
# Recognize belt as a complete English word in common vocabulary contexts.
|
|
1311
|
+
- "belt"
|
|
1312
|
+
# Recognize bend as a complete English word in common vocabulary contexts.
|
|
1313
|
+
- "bend"
|
|
1314
|
+
# Recognize bill as a complete English word in common vocabulary contexts.
|
|
1315
|
+
- "bill"
|
|
1316
|
+
# Recognize bind as a complete English word in common vocabulary contexts.
|
|
1317
|
+
- "bind"
|
|
1318
|
+
# Recognize bird as a complete English word in common vocabulary contexts.
|
|
1319
|
+
- "bird"
|
|
1320
|
+
# Recognize bite as a complete English word in common vocabulary contexts.
|
|
1321
|
+
- "bite"
|
|
1322
|
+
# Recognize blow as a complete English word in common vocabulary contexts.
|
|
1323
|
+
- "blow"
|
|
1324
|
+
# Recognize boil as a complete English word in common vocabulary contexts.
|
|
1325
|
+
- "boil"
|
|
1326
|
+
# Recognize bold as a complete English word in common vocabulary contexts.
|
|
1327
|
+
- "bold"
|
|
1328
|
+
# Recognize bolt as a complete English word in common vocabulary contexts.
|
|
1329
|
+
- "bolt"
|
|
1330
|
+
# Recognize bomb as a complete English word in common vocabulary contexts.
|
|
1331
|
+
- "bomb"
|
|
1332
|
+
# Recognize bond as a complete English word in common vocabulary contexts.
|
|
1333
|
+
- "bond"
|
|
1334
|
+
# Recognize bone as a complete English word in common vocabulary contexts.
|
|
1335
|
+
- "bone"
|
|
1336
|
+
# Recognize book as a complete English word in common vocabulary contexts.
|
|
1337
|
+
- "book"
|
|
1338
|
+
# Recognize boot as a complete English word in common vocabulary contexts.
|
|
1339
|
+
- "boot"
|
|
1340
|
+
# Recognize bore as a complete English word in common vocabulary contexts.
|
|
1341
|
+
- "bore"
|
|
1342
|
+
# Recognize born as a complete English word in common vocabulary contexts.
|
|
1343
|
+
- "born"
|
|
1344
|
+
# Recognize boss as a complete English word in common vocabulary contexts.
|
|
1345
|
+
- "boss"
|
|
1346
|
+
# Recognize both as a complete English word in common vocabulary contexts.
|
|
1347
|
+
- "both"
|
|
1348
|
+
# Recognize bowl as a complete English word in common vocabulary contexts.
|
|
1349
|
+
- "bowl"
|
|
1350
|
+
# Recognize bulb as a complete English word in common vocabulary contexts.
|
|
1351
|
+
- "bulb"
|
|
1352
|
+
# Recognize bulk as a complete English word in common vocabulary contexts.
|
|
1353
|
+
- "bulk"
|
|
1354
|
+
# Recognize bull as a complete English word in common vocabulary contexts.
|
|
1355
|
+
- "bull"
|
|
1356
|
+
# Recognize burn as a complete English word in common vocabulary contexts.
|
|
1357
|
+
- "burn"
|
|
1358
|
+
# Recognize bury as a complete English word in common vocabulary contexts.
|
|
1359
|
+
- "bury"
|
|
1360
|
+
# Recognize bush as a complete English word in common vocabulary contexts.
|
|
1361
|
+
- "bush"
|
|
1362
|
+
# Recognize busy as a complete English word in common vocabulary contexts.
|
|
1363
|
+
- "busy"
|
|
1364
|
+
# Recognize cage as a complete English word in common vocabulary contexts.
|
|
1365
|
+
- "cage"
|
|
1366
|
+
# Recognize cake as a complete English word in common vocabulary contexts.
|
|
1367
|
+
- "cake"
|
|
1368
|
+
# Recognize calm as a complete English word in common vocabulary contexts.
|
|
1369
|
+
- "calm"
|
|
1370
|
+
# Recognize came as a complete English word in common vocabulary contexts.
|
|
1371
|
+
- "came"
|
|
1372
|
+
# Recognize camp as a complete English word in common vocabulary contexts.
|
|
1373
|
+
- "camp"
|
|
1374
|
+
# Recognize card as a complete English word in common vocabulary contexts.
|
|
1375
|
+
- "card"
|
|
1376
|
+
# Recognize care as a complete English word in common vocabulary contexts.
|
|
1377
|
+
- "care"
|
|
1378
|
+
# Recognize cart as a complete English word in common vocabulary contexts.
|
|
1379
|
+
- "cart"
|
|
1380
|
+
# Recognize cash as a complete English word in common vocabulary contexts.
|
|
1381
|
+
- "cash"
|
|
1382
|
+
# Recognize cast as a complete English word in common vocabulary contexts.
|
|
1383
|
+
- "cast"
|
|
1384
|
+
# Recognize cave as a complete English word in common vocabulary contexts.
|
|
1385
|
+
- "cave"
|
|
1386
|
+
# Recognize cell as a complete English word in common vocabulary contexts.
|
|
1387
|
+
- "cell"
|
|
1388
|
+
# Recognize chat as a complete English word in common vocabulary contexts.
|
|
1389
|
+
- "chat"
|
|
1390
|
+
# Recognize chip as a complete English word in common vocabulary contexts.
|
|
1391
|
+
- "chip"
|
|
1392
|
+
# Recognize chop as a complete English word in common vocabulary contexts.
|
|
1393
|
+
- "chop"
|
|
1394
|
+
# Recognize city as a complete English word in common vocabulary contexts.
|
|
1395
|
+
- "city"
|
|
1396
|
+
# Recognize clay as a complete English word in common vocabulary contexts.
|
|
1397
|
+
- "clay"
|
|
1398
|
+
# Recognize club as a complete English word in common vocabulary contexts.
|
|
1399
|
+
- "club"
|
|
1400
|
+
# Recognize clue as a complete English word in common vocabulary contexts.
|
|
1401
|
+
- "clue"
|
|
1402
|
+
# Recognize coal as a complete English word in common vocabulary contexts.
|
|
1403
|
+
- "coal"
|
|
1404
|
+
# Recognize coat as a complete English word in common vocabulary contexts.
|
|
1405
|
+
- "coat"
|
|
1406
|
+
# Recognize coin as a complete English word in common vocabulary contexts.
|
|
1407
|
+
- "coin"
|
|
1408
|
+
# Recognize cold as a complete English word in common vocabulary contexts.
|
|
1409
|
+
- "cold"
|
|
1410
|
+
# Recognize come as a complete English word in common vocabulary contexts.
|
|
1411
|
+
- "come"
|
|
1412
|
+
# Recognize cone as a complete English word in common vocabulary contexts.
|
|
1413
|
+
- "cone"
|
|
1414
|
+
# Recognize cook as a complete English word in common vocabulary contexts.
|
|
1415
|
+
- "cook"
|
|
1416
|
+
# Recognize cool as a complete English word in common vocabulary contexts.
|
|
1417
|
+
- "cool"
|
|
1418
|
+
# Recognize cope as a complete English word in common vocabulary contexts.
|
|
1419
|
+
- "cope"
|
|
1420
|
+
# Recognize cord as a complete English word in common vocabulary contexts.
|
|
1421
|
+
- "cord"
|
|
1422
|
+
# Recognize cork as a complete English word in common vocabulary contexts.
|
|
1423
|
+
- "cork"
|
|
1424
|
+
# Recognize corn as a complete English word in common vocabulary contexts.
|
|
1425
|
+
- "corn"
|
|
1426
|
+
# Recognize cost as a complete English word in common vocabulary contexts.
|
|
1427
|
+
- "cost"
|
|
1428
|
+
# Recognize crew as a complete English word in common vocabulary contexts.
|
|
1429
|
+
- "crew"
|
|
1430
|
+
# Recognize crop as a complete English word in common vocabulary contexts.
|
|
1431
|
+
- "crop"
|
|
1432
|
+
# Recognize crowd as a complete English word in common vocabulary contexts.
|
|
1433
|
+
- "crowd"
|
|
1434
|
+
# Recognize cube as a complete English word in common vocabulary contexts.
|
|
1435
|
+
- "cube"
|
|
1436
|
+
# Recognize cure as a complete English word in common vocabulary contexts.
|
|
1437
|
+
- "cure"
|
|
1438
|
+
# Recognize curl as a complete English word in common vocabulary contexts.
|
|
1439
|
+
- "curl"
|
|
1440
|
+
# Recognize damp as a complete English word in common vocabulary contexts.
|
|
1441
|
+
- "damp"
|
|
1442
|
+
# Recognize dare as a complete English word in common vocabulary contexts.
|
|
1443
|
+
- "dare"
|
|
1444
|
+
# Recognize dash as a complete English word in common vocabulary contexts.
|
|
1445
|
+
- "dash"
|
|
1446
|
+
# Recognize date as a complete English word in common vocabulary contexts.
|
|
1447
|
+
- "date"
|
|
1448
|
+
# Recognize dawn as a complete English word in common vocabulary contexts.
|
|
1449
|
+
- "dawn"
|
|
1450
|
+
# Recognize dead as a complete English word in common vocabulary contexts.
|
|
1451
|
+
- "dead"
|
|
1452
|
+
# Recognize deaf as a complete English word in common vocabulary contexts.
|
|
1453
|
+
- "deaf"
|
|
1454
|
+
# Recognize deal as a complete English word in common vocabulary contexts.
|
|
1455
|
+
- "deal"
|
|
1456
|
+
# Recognize dear as a complete English word in common vocabulary contexts.
|
|
1457
|
+
- "dear"
|
|
1458
|
+
# Recognize debt as a complete English word in common vocabulary contexts.
|
|
1459
|
+
- "debt"
|
|
1460
|
+
# Recognize deck as a complete English word in common vocabulary contexts.
|
|
1461
|
+
- "deck"
|
|
1462
|
+
# Recognize deed as a complete English word in common vocabulary contexts.
|
|
1463
|
+
- "deed"
|
|
1464
|
+
# Recognize deer as a complete English word in common vocabulary contexts.
|
|
1465
|
+
- "deer"
|
|
1466
|
+
# Recognize deny as a complete English word in common vocabulary contexts.
|
|
1467
|
+
- "deny"
|
|
1468
|
+
# Recognize desk as a complete English word in common vocabulary contexts.
|
|
1469
|
+
- "desk"
|
|
1470
|
+
# Recognize dial as a complete English word in common vocabulary contexts.
|
|
1471
|
+
- "dial"
|
|
1472
|
+
# Recognize dice as a complete English word in common vocabulary contexts.
|
|
1473
|
+
- "dice"
|
|
1474
|
+
# Recognize diet as a complete English word in common vocabulary contexts.
|
|
1475
|
+
- "diet"
|
|
1476
|
+
# Recognize dirt as a complete English word in common vocabulary contexts.
|
|
1477
|
+
- "dirt"
|
|
1478
|
+
# Recognize dish as a complete English word in common vocabulary contexts.
|
|
1479
|
+
- "dish"
|
|
1480
|
+
# Recognize disk as a complete English word in common vocabulary contexts.
|
|
1481
|
+
- "disk"
|
|
1482
|
+
# Recognize dock as a complete English word in common vocabulary contexts.
|
|
1483
|
+
- "dock"
|
|
1484
|
+
# Recognize dome as a complete English word in common vocabulary contexts.
|
|
1485
|
+
- "dome"
|
|
1486
|
+
# Recognize doom as a complete English word in common vocabulary contexts.
|
|
1487
|
+
- "doom"
|
|
1488
|
+
# Recognize door as a complete English word in common vocabulary contexts.
|
|
1489
|
+
- "door"
|
|
1490
|
+
# Recognize dose as a complete English word in common vocabulary contexts.
|
|
1491
|
+
- "dose"
|
|
1492
|
+
# Recognize drag as a complete English word in common vocabulary contexts.
|
|
1493
|
+
- "drag"
|
|
1494
|
+
# Recognize drip as a complete English word in common vocabulary contexts.
|
|
1495
|
+
- "drip"
|
|
1496
|
+
# Recognize drug as a complete English word in common vocabulary contexts.
|
|
1497
|
+
- "drug"
|
|
1498
|
+
# Recognize drum as a complete English word in common vocabulary contexts.
|
|
1499
|
+
- "drum"
|
|
1500
|
+
# Recognize dual as a complete English word in common vocabulary contexts.
|
|
1501
|
+
- "dual"
|
|
1502
|
+
# Recognize duck as a complete English word in common vocabulary contexts.
|
|
1503
|
+
- "duck"
|
|
1504
|
+
# Recognize dull as a complete English word in common vocabulary contexts.
|
|
1505
|
+
- "dull"
|
|
1506
|
+
# Recognize dump as a complete English word in common vocabulary contexts.
|
|
1507
|
+
- "dump"
|
|
1508
|
+
# Recognize dusk as a complete English word in common vocabulary contexts.
|
|
1509
|
+
- "dusk"
|
|
1510
|
+
# Recognize dust as a complete English word in common vocabulary contexts.
|
|
1511
|
+
- "dust"
|
|
1512
|
+
# Recognize duty as a complete English word in common vocabulary contexts.
|
|
1513
|
+
- "duty"
|
|
1514
|
+
# Recognize earn as a complete English word in common vocabulary contexts.
|
|
1515
|
+
- "earn"
|
|
1516
|
+
# Recognize ease as a complete English word in common vocabulary contexts.
|
|
1517
|
+
- "ease"
|
|
1518
|
+
# Recognize emit as a complete English word in common vocabulary contexts.
|
|
1519
|
+
- "emit"
|
|
1520
|
+
# Recognize envy as a complete English word in common vocabulary contexts.
|
|
1521
|
+
- "envy"
|
|
1522
|
+
# Recognize ever as a complete English word in common vocabulary contexts.
|
|
1523
|
+
- "ever"
|
|
1524
|
+
# Recognize evil as a complete English word in common vocabulary contexts.
|
|
1525
|
+
- "evil"
|
|
1526
|
+
# Recognize exam as a complete English word in common vocabulary contexts.
|
|
1527
|
+
- "exam"
|
|
1528
|
+
# Recognize fact as a complete English word in common vocabulary contexts.
|
|
1529
|
+
- "fact"
|
|
1530
|
+
# Recognize fade as a complete English word in common vocabulary contexts.
|
|
1531
|
+
- "fade"
|
|
1532
|
+
# Recognize fair as a complete English word in common vocabulary contexts.
|
|
1533
|
+
- "fair"
|
|
1534
|
+
# Recognize fake as a complete English word in common vocabulary contexts.
|
|
1535
|
+
- "fake"
|
|
1536
|
+
# Recognize fame as a complete English word in common vocabulary contexts.
|
|
1537
|
+
- "fame"
|
|
1538
|
+
# Recognize farm as a complete English word in common vocabulary contexts.
|
|
1539
|
+
- "farm"
|
|
1540
|
+
# Recognize fate as a complete English word in common vocabulary contexts.
|
|
1541
|
+
- "fate"
|
|
1542
|
+
# Recognize fear as a complete English word in common vocabulary contexts.
|
|
1543
|
+
- "fear"
|
|
1544
|
+
# Recognize feel as a complete English word in common vocabulary contexts.
|
|
1545
|
+
- "feel"
|
|
1546
|
+
# Recognize film as a complete English word in common vocabulary contexts.
|
|
1547
|
+
- "film"
|
|
1548
|
+
# Recognize fine as a complete English word in common vocabulary contexts.
|
|
1549
|
+
- "fine"
|
|
1550
|
+
# Recognize fire as a complete English word in common vocabulary contexts.
|
|
1551
|
+
- "fire"
|
|
1552
|
+
# Recognize firm as a complete English word in common vocabulary contexts.
|
|
1553
|
+
- "firm"
|
|
1554
|
+
# Recognize fish as a complete English word in common vocabulary contexts.
|
|
1555
|
+
- "fish"
|
|
1556
|
+
# Recognize fist as a complete English word in common vocabulary contexts.
|
|
1557
|
+
- "fist"
|
|
1558
|
+
# Recognize flag as a complete English word in common vocabulary contexts.
|
|
1559
|
+
- "flag"
|
|
1560
|
+
# Recognize flap as a complete English word in common vocabulary contexts.
|
|
1561
|
+
- "flap"
|
|
1562
|
+
# Recognize flaw as a complete English word in common vocabulary contexts.
|
|
1563
|
+
- "flaw"
|
|
1564
|
+
# Recognize flee as a complete English word in common vocabulary contexts.
|
|
1565
|
+
- "flee"
|
|
1566
|
+
# Recognize flew as a complete English word in common vocabulary contexts.
|
|
1567
|
+
- "flew"
|
|
1568
|
+
# Recognize foam as a complete English word in common vocabulary contexts.
|
|
1569
|
+
- "foam"
|
|
1570
|
+
# Recognize folk as a complete English word in common vocabulary contexts.
|
|
1571
|
+
- "folk"
|
|
1572
|
+
# Recognize fond as a complete English word in common vocabulary contexts.
|
|
1573
|
+
- "fond"
|
|
1574
|
+
# Recognize font as a complete English word in common vocabulary contexts.
|
|
1575
|
+
- "font"
|
|
1576
|
+
# Recognize food as a complete English word in common vocabulary contexts.
|
|
1577
|
+
- "food"
|
|
1578
|
+
# Recognize fool as a complete English word in common vocabulary contexts.
|
|
1579
|
+
- "fool"
|
|
1580
|
+
# Recognize foot as a complete English word in common vocabulary contexts.
|
|
1581
|
+
- "foot"
|
|
1582
|
+
# Recognize ford as a complete English word in common vocabulary contexts.
|
|
1583
|
+
- "ford"
|
|
1584
|
+
# Recognize fore as a complete English word in common vocabulary contexts.
|
|
1585
|
+
- "fore"
|
|
1586
|
+
# Recognize fork as a complete English word in common vocabulary contexts.
|
|
1587
|
+
- "fork"
|
|
1588
|
+
# Recognize fort as a complete English word in common vocabulary contexts.
|
|
1589
|
+
- "fort"
|
|
1590
|
+
# Recognize foul as a complete English word in common vocabulary contexts.
|
|
1591
|
+
- "foul"
|
|
1592
|
+
# Recognize four as a complete English word in common vocabulary contexts.
|
|
1593
|
+
- "four"
|
|
1594
|
+
# Recognize frog as a complete English word in common vocabulary contexts.
|
|
1595
|
+
- "frog"
|
|
1596
|
+
# Recognize from as a complete English word in common vocabulary contexts.
|
|
1597
|
+
- "from"
|
|
1598
|
+
# Recognize fuel as a complete English word in common vocabulary contexts.
|
|
1599
|
+
- "fuel"
|
|
1600
|
+
# Recognize fund as a complete English word in common vocabulary contexts.
|
|
1601
|
+
- "fund"
|
|
1602
|
+
# Recognize fury as a complete English word in common vocabulary contexts.
|
|
1603
|
+
- "fury"
|
|
1604
|
+
# Recognize fuse as a complete English word in common vocabulary contexts.
|
|
1605
|
+
- "fuse"
|
|
1606
|
+
# Recognize game as a complete English word in common vocabulary contexts.
|
|
1607
|
+
- "game"
|
|
1608
|
+
# Recognize gang as a complete English word in common vocabulary contexts.
|
|
1609
|
+
- "gang"
|
|
1610
|
+
# Recognize gate as a complete English word in common vocabulary contexts.
|
|
1611
|
+
- "gate"
|
|
1612
|
+
# Recognize gave as a complete English word in common vocabulary contexts.
|
|
1613
|
+
- "gave"
|
|
1614
|
+
# Recognize gaze as a complete English word in common vocabulary contexts.
|
|
1615
|
+
- "gaze"
|
|
1616
|
+
# Recognize gear as a complete English word in common vocabulary contexts.
|
|
1617
|
+
- "gear"
|
|
1618
|
+
# Recognize gene as a complete English word in common vocabulary contexts.
|
|
1619
|
+
- "gene"
|
|
1620
|
+
# Recognize gift as a complete English word in common vocabulary contexts.
|
|
1621
|
+
- "gift"
|
|
1622
|
+
# Recognize girl as a complete English word in common vocabulary contexts.
|
|
1623
|
+
- "girl"
|
|
1624
|
+
# Recognize glad as a complete English word in common vocabulary contexts.
|
|
1625
|
+
- "glad"
|
|
1626
|
+
# Recognize glow as a complete English word in common vocabulary contexts.
|
|
1627
|
+
- "glow"
|
|
1628
|
+
# Recognize glue as a complete English word in common vocabulary contexts.
|
|
1629
|
+
- "glue"
|
|
1630
|
+
# Recognize goal as a complete English word in common vocabulary contexts.
|
|
1631
|
+
- "goal"
|
|
1632
|
+
# Recognize goat as a complete English word in common vocabulary contexts.
|
|
1633
|
+
- "goat"
|
|
1634
|
+
# Recognize goes as a complete English word in common vocabulary contexts.
|
|
1635
|
+
- "goes"
|
|
1636
|
+
# Recognize gold as a complete English word in common vocabulary contexts.
|
|
1637
|
+
- "gold"
|
|
1638
|
+
# Recognize golf as a complete English word in common vocabulary contexts.
|
|
1639
|
+
- "golf"
|
|
1640
|
+
# Recognize gone as a complete English word in common vocabulary contexts.
|
|
1641
|
+
- "gone"
|
|
1642
|
+
# Recognize grab as a complete English word in common vocabulary contexts.
|
|
1643
|
+
- "grab"
|
|
1644
|
+
# Recognize grew as a complete English word in common vocabulary contexts.
|
|
1645
|
+
- "grew"
|
|
1646
|
+
# Recognize grin as a complete English word in common vocabulary contexts.
|
|
1647
|
+
- "grin"
|
|
1648
|
+
# Recognize grip as a complete English word in common vocabulary contexts.
|
|
1649
|
+
- "grip"
|
|
1650
|
+
# Recognize grow as a complete English word in common vocabulary contexts.
|
|
1651
|
+
- "grow"
|
|
1652
|
+
# Recognize gulf as a complete English word in common vocabulary contexts.
|
|
1653
|
+
- "gulf"
|
|
1654
|
+
# Recognize gust as a complete English word in common vocabulary contexts.
|
|
1655
|
+
- "gust"
|
|
1656
|
+
# Recognize hack as a complete English word in common vocabulary contexts.
|
|
1657
|
+
- "hack"
|
|
1658
|
+
# Recognize hair as a complete English word in common vocabulary contexts.
|
|
1659
|
+
- "hair"
|
|
1660
|
+
# Recognize hall as a complete English word in common vocabulary contexts.
|
|
1661
|
+
- "hall"
|
|
1662
|
+
# Recognize halt as a complete English word in common vocabulary contexts.
|
|
1663
|
+
- "halt"
|
|
1664
|
+
# Recognize hang as a complete English word in common vocabulary contexts.
|
|
1665
|
+
- "hang"
|
|
1666
|
+
# Recognize harm as a complete English word in common vocabulary contexts.
|
|
1667
|
+
- "harm"
|
|
1668
|
+
# Recognize hate as a complete English word in common vocabulary contexts.
|
|
1669
|
+
- "hate"
|
|
1670
|
+
# Recognize haul as a complete English word in common vocabulary contexts.
|
|
1671
|
+
- "haul"
|
|
1672
|
+
# Recognize have as a complete English word in common vocabulary contexts.
|
|
1673
|
+
- "have"
|
|
1674
|
+
# Recognize haze as a complete English word in common vocabulary contexts.
|
|
1675
|
+
- "haze"
|
|
1676
|
+
# Recognize heal as a complete English word in common vocabulary contexts.
|
|
1677
|
+
- "heal"
|
|
1678
|
+
# Recognize heap as a complete English word in common vocabulary contexts.
|
|
1679
|
+
- "heap"
|
|
1680
|
+
# Recognize hear as a complete English word in common vocabulary contexts.
|
|
1681
|
+
- "hear"
|
|
1682
|
+
# Recognize heat as a complete English word in common vocabulary contexts.
|
|
1683
|
+
- "heat"
|
|
1684
|
+
# Recognize heel as a complete English word in common vocabulary contexts.
|
|
1685
|
+
- "heel"
|
|
1686
|
+
# Recognize held as a complete English word in common vocabulary contexts.
|
|
1687
|
+
- "held"
|
|
1688
|
+
# Recognize hell as a complete English word in common vocabulary contexts.
|
|
1689
|
+
- "hell"
|
|
1690
|
+
# Recognize herb as a complete English word in common vocabulary contexts.
|
|
1691
|
+
- "herb"
|
|
1692
|
+
# Recognize herd as a complete English word in common vocabulary contexts.
|
|
1693
|
+
- "herd"
|
|
1694
|
+
# Recognize hero as a complete English word in common vocabulary contexts.
|
|
1695
|
+
- "hero"
|
|
1696
|
+
# Recognize hike as a complete English word in common vocabulary contexts.
|
|
1697
|
+
- "hike"
|
|
1698
|
+
# Recognize hill as a complete English word in common vocabulary contexts.
|
|
1699
|
+
- "hill"
|
|
1700
|
+
# Recognize hint as a complete English word in common vocabulary contexts.
|
|
1701
|
+
- "hint"
|
|
1702
|
+
# Recognize hire as a complete English word in common vocabulary contexts.
|
|
1703
|
+
- "hire"
|
|
1704
|
+
# Recognize hole as a complete English word in common vocabulary contexts.
|
|
1705
|
+
- "hole"
|
|
1706
|
+
# Recognize holy as a complete English word in common vocabulary contexts.
|
|
1707
|
+
- "holy"
|
|
1708
|
+
# Recognize home as a complete English word in common vocabulary contexts.
|
|
1709
|
+
- "home"
|
|
1710
|
+
# Recognize hook as a complete English word in common vocabulary contexts.
|
|
1711
|
+
- "hook"
|
|
1712
|
+
# Recognize hope as a complete English word in common vocabulary contexts.
|
|
1713
|
+
- "hope"
|
|
1714
|
+
# Recognize horn as a complete English word in common vocabulary contexts.
|
|
1715
|
+
- "horn"
|
|
1716
|
+
# Recognize hour as a complete English word in common vocabulary contexts.
|
|
1717
|
+
- "hour"
|
|
1718
|
+
# Recognize huge as a complete English word in common vocabulary contexts.
|
|
1719
|
+
- "huge"
|
|
1720
|
+
# Recognize hull as a complete English word in common vocabulary contexts.
|
|
1721
|
+
- "hull"
|
|
1722
|
+
# Recognize hung as a complete English word in common vocabulary contexts.
|
|
1723
|
+
- "hung"
|
|
1724
|
+
# Recognize hunt as a complete English word in common vocabulary contexts.
|
|
1725
|
+
- "hunt"
|
|
1726
|
+
# Recognize hurt as a complete English word in common vocabulary contexts.
|
|
1727
|
+
- "hurt"
|
|
1728
|
+
# Recognize idle as a complete English word in common vocabulary contexts.
|
|
1729
|
+
- "idle"
|
|
1730
|
+
# Recognize inch as a complete English word in common vocabulary contexts.
|
|
1731
|
+
- "inch"
|
|
1732
|
+
# Recognize iron as a complete English word in common vocabulary contexts.
|
|
1733
|
+
- "iron"
|
|
1734
|
+
# Recognize isle as a complete English word in common vocabulary contexts.
|
|
1735
|
+
- "isle"
|
|
1736
|
+
# Recognize jail as a complete English word in common vocabulary contexts.
|
|
1737
|
+
- "jail"
|
|
1738
|
+
# Recognize jean as a complete English word in common vocabulary contexts.
|
|
1739
|
+
- "jean"
|
|
1740
|
+
# Recognize joke as a complete English word in common vocabulary contexts.
|
|
1741
|
+
- "joke"
|
|
1742
|
+
# Recognize jury as a complete English word in common vocabulary contexts.
|
|
1743
|
+
- "jury"
|
|
1744
|
+
# Recognize keen as a complete English word in common vocabulary contexts.
|
|
1745
|
+
- "keen"
|
|
1746
|
+
# Recognize kick as a complete English word in common vocabulary contexts.
|
|
1747
|
+
- "kick"
|
|
1748
|
+
# Recognize king as a complete English word in common vocabulary contexts.
|
|
1749
|
+
- "king"
|
|
1750
|
+
# Recognize kiss as a complete English word in common vocabulary contexts.
|
|
1751
|
+
- "kiss"
|
|
1752
|
+
# Recognize kite as a complete English word in common vocabulary contexts.
|
|
1753
|
+
- "kite"
|
|
1754
|
+
# Recognize knee as a complete English word in common vocabulary contexts.
|
|
1755
|
+
- "knee"
|
|
1756
|
+
# Recognize knew as a complete English word in common vocabulary contexts.
|
|
1757
|
+
- "knew"
|
|
1758
|
+
# Recognize knit as a complete English word in common vocabulary contexts.
|
|
1759
|
+
- "knit"
|
|
1760
|
+
# Recognize knob as a complete English word in common vocabulary contexts.
|
|
1761
|
+
- "knob"
|
|
1762
|
+
# Recognize knot as a complete English word in common vocabulary contexts.
|
|
1763
|
+
- "knot"
|
|
1764
|
+
# Recognize lace as a complete English word in common vocabulary contexts.
|
|
1765
|
+
- "lace"
|
|
1766
|
+
# Recognize lack as a complete English word in common vocabulary contexts.
|
|
1767
|
+
- "lack"
|
|
1768
|
+
# Recognize lake as a complete English word in common vocabulary contexts.
|
|
1769
|
+
- "lake"
|
|
1770
|
+
# Recognize lamb as a complete English word in common vocabulary contexts.
|
|
1771
|
+
- "lamb"
|
|
1772
|
+
# Recognize lamp as a complete English word in common vocabulary contexts.
|
|
1773
|
+
- "lamp"
|
|
1774
|
+
# Recognize lane as a complete English word in common vocabulary contexts.
|
|
1775
|
+
- "lane"
|
|
1776
|
+
# Recognize lawn as a complete English word in common vocabulary contexts.
|
|
1777
|
+
- "lawn"
|
|
1778
|
+
# Recognize leaf as a complete English word in common vocabulary contexts.
|
|
1779
|
+
- "leaf"
|
|
1780
|
+
# Recognize leak as a complete English word in common vocabulary contexts.
|
|
1781
|
+
- "leak"
|
|
1782
|
+
# Recognize lean as a complete English word in common vocabulary contexts.
|
|
1783
|
+
- "lean"
|
|
1784
|
+
# Recognize leap as a complete English word in common vocabulary contexts.
|
|
1785
|
+
- "leap"
|
|
1786
|
+
# Recognize lend as a complete English word in common vocabulary contexts.
|
|
1787
|
+
- "lend"
|
|
1788
|
+
# Recognize liar as a complete English word in common vocabulary contexts.
|
|
1789
|
+
- "liar"
|
|
1790
|
+
# Recognize lick as a complete English word in common vocabulary contexts.
|
|
1791
|
+
- "lick"
|
|
1792
|
+
# Recognize limb as a complete English word in common vocabulary contexts.
|
|
1793
|
+
- "limb"
|
|
1794
|
+
# Recognize lime as a complete English word in common vocabulary contexts.
|
|
1795
|
+
- "lime"
|
|
1796
|
+
# Recognize limp as a complete English word in common vocabulary contexts.
|
|
1797
|
+
- "limp"
|
|
1798
|
+
# Recognize lion as a complete English word in common vocabulary contexts.
|
|
1799
|
+
- "lion"
|
|
1800
|
+
# Recognize loaf as a complete English word in common vocabulary contexts.
|
|
1801
|
+
- "loaf"
|
|
1802
|
+
# Recognize loan as a complete English word in common vocabulary contexts.
|
|
1803
|
+
- "loan"
|
|
1804
|
+
# Recognize logo as a complete English word in common vocabulary contexts.
|
|
1805
|
+
- "logo"
|
|
1806
|
+
# Recognize lord as a complete English word in common vocabulary contexts.
|
|
1807
|
+
- "lord"
|
|
1808
|
+
# Recognize lose as a complete English word in common vocabulary contexts.
|
|
1809
|
+
- "lose"
|
|
1810
|
+
# Recognize lost as a complete English word in common vocabulary contexts.
|
|
1811
|
+
- "lost"
|
|
1812
|
+
# Recognize loud as a complete English word in common vocabulary contexts.
|
|
1813
|
+
- "loud"
|
|
1814
|
+
# Recognize love as a complete English word in common vocabulary contexts.
|
|
1815
|
+
- "love"
|
|
1816
|
+
# Recognize luck as a complete English word in common vocabulary contexts.
|
|
1817
|
+
- "luck"
|
|
1818
|
+
# Recognize lump as a complete English word in common vocabulary contexts.
|
|
1819
|
+
- "lump"
|
|
1820
|
+
# Recognize lung as a complete English word in common vocabulary contexts.
|
|
1821
|
+
- "lung"
|
|
1822
|
+
# Recognize lure as a complete English word in common vocabulary contexts.
|
|
1823
|
+
- "lure"
|
|
1824
|
+
# Recognize lush as a complete English word in common vocabulary contexts.
|
|
1825
|
+
- "lush"
|
|
1826
|
+
# Recognize made as a complete English word in common vocabulary contexts.
|
|
1827
|
+
- "made"
|
|
1828
|
+
# Recognize male as a complete English word in common vocabulary contexts.
|
|
1829
|
+
- "male"
|
|
1830
|
+
# Recognize mall as a complete English word in common vocabulary contexts.
|
|
1831
|
+
- "mall"
|
|
1832
|
+
# Recognize mate as a complete English word in common vocabulary contexts.
|
|
1833
|
+
- "mate"
|
|
1834
|
+
# Recognize meal as a complete English word in common vocabulary contexts.
|
|
1835
|
+
- "meal"
|
|
1836
|
+
# Recognize meat as a complete English word in common vocabulary contexts.
|
|
1837
|
+
- "meat"
|
|
1838
|
+
# Recognize melt as a complete English word in common vocabulary contexts.
|
|
1839
|
+
- "melt"
|
|
1840
|
+
# Recognize mere as a complete English word in common vocabulary contexts.
|
|
1841
|
+
- "mere"
|
|
1842
|
+
# Recognize mesh as a complete English word in common vocabulary contexts.
|
|
1843
|
+
- "mesh"
|
|
1844
|
+
# Recognize mess as a complete English word in common vocabulary contexts.
|
|
1845
|
+
- "mess"
|
|
1846
|
+
# Recognize mild as a complete English word in common vocabulary contexts.
|
|
1847
|
+
- "mild"
|
|
1848
|
+
# Recognize milk as a complete English word in common vocabulary contexts.
|
|
1849
|
+
- "milk"
|
|
1850
|
+
# Recognize mill as a complete English word in common vocabulary contexts.
|
|
1851
|
+
- "mill"
|
|
1852
|
+
# Recognize mine as a complete English word in common vocabulary contexts.
|
|
1853
|
+
- "mine"
|
|
1854
|
+
# Recognize mold as a complete English word in common vocabulary contexts.
|
|
1855
|
+
- "mold"
|
|
1856
|
+
# Recognize mood as a complete English word in common vocabulary contexts.
|
|
1857
|
+
- "mood"
|
|
1858
|
+
# Recognize moon as a complete English word in common vocabulary contexts.
|
|
1859
|
+
- "moon"
|
|
1860
|
+
# Recognize moss as a complete English word in common vocabulary contexts.
|
|
1861
|
+
- "moss"
|
|
1862
|
+
# Recognize most as a complete English word in common vocabulary contexts.
|
|
1863
|
+
- "most"
|
|
1864
|
+
# Recognize myth as a complete English word in common vocabulary contexts.
|
|
1865
|
+
- "myth"
|
|
1866
|
+
# Recognize nail as a complete English word in common vocabulary contexts.
|
|
1867
|
+
- "nail"
|
|
1868
|
+
# Recognize navy as a complete English word in common vocabulary contexts.
|
|
1869
|
+
- "navy"
|
|
1870
|
+
# Recognize neat as a complete English word in common vocabulary contexts.
|
|
1871
|
+
- "neat"
|
|
1872
|
+
# Recognize neck as a complete English word in common vocabulary contexts.
|
|
1873
|
+
- "neck"
|
|
1874
|
+
# Recognize nest as a complete English word in common vocabulary contexts.
|
|
1875
|
+
- "nest"
|
|
1876
|
+
# Recognize news as a complete English word in common vocabulary contexts.
|
|
1877
|
+
- "news"
|
|
1878
|
+
# Recognize nice as a complete English word in common vocabulary contexts.
|
|
1879
|
+
- "nice"
|
|
1880
|
+
# Recognize none as a complete English word in common vocabulary contexts.
|
|
1881
|
+
- "none"
|
|
1882
|
+
# Recognize nose as a complete English word in common vocabulary contexts.
|
|
1883
|
+
- "nose"
|
|
1884
|
+
# Recognize noun as a complete English word in common vocabulary contexts.
|
|
1885
|
+
- "noun"
|
|
1886
|
+
# Recognize obey as a complete English word in common vocabulary contexts.
|
|
1887
|
+
- "obey"
|
|
1888
|
+
# Recognize odds as a complete English word in common vocabulary contexts.
|
|
1889
|
+
- "odds"
|
|
1890
|
+
# Recognize odor as a complete English word in common vocabulary contexts.
|
|
1891
|
+
- "odor"
|
|
1892
|
+
# Recognize okay as a complete English word in common vocabulary contexts.
|
|
1893
|
+
- "okay"
|
|
1894
|
+
# Recognize onto as a complete English word in common vocabulary contexts.
|
|
1895
|
+
- "onto"
|
|
1896
|
+
# Recognize oven as a complete English word in common vocabulary contexts.
|
|
1897
|
+
- "oven"
|
|
1898
|
+
# Recognize owns as a complete English word in common vocabulary contexts.
|
|
1899
|
+
- "owns"
|
|
1900
|
+
# Recognize pace as a complete English word in common vocabulary contexts.
|
|
1901
|
+
- "pace"
|
|
1902
|
+
# Recognize paid as a complete English word in common vocabulary contexts.
|
|
1903
|
+
- "paid"
|
|
1904
|
+
# Recognize pain as a complete English word in common vocabulary contexts.
|
|
1905
|
+
- "pain"
|
|
1906
|
+
# Recognize pale as a complete English word in common vocabulary contexts.
|
|
1907
|
+
- "pale"
|
|
1908
|
+
# Recognize palm as a complete English word in common vocabulary contexts.
|
|
1909
|
+
- "palm"
|
|
1910
|
+
# Recognize park as a complete English word in common vocabulary contexts.
|
|
1911
|
+
- "park"
|
|
1912
|
+
# Recognize peak as a complete English word in common vocabulary contexts.
|
|
1913
|
+
- "peak"
|
|
1914
|
+
# Recognize pear as a complete English word in common vocabulary contexts.
|
|
1915
|
+
- "pear"
|
|
1916
|
+
# Recognize peer as a complete English word in common vocabulary contexts.
|
|
1917
|
+
- "peer"
|
|
1918
|
+
# Recognize pile as a complete English word in common vocabulary contexts.
|
|
1919
|
+
- "pile"
|
|
1920
|
+
# Recognize pine as a complete English word in common vocabulary contexts.
|
|
1921
|
+
- "pine"
|
|
1922
|
+
# Recognize pink as a complete English word in common vocabulary contexts.
|
|
1923
|
+
- "pink"
|
|
1924
|
+
# Recognize poem as a complete English word in common vocabulary contexts.
|
|
1925
|
+
- "poem"
|
|
1926
|
+
# Recognize poet as a complete English word in common vocabulary contexts.
|
|
1927
|
+
- "poet"
|
|
1928
|
+
# Recognize pole as a complete English word in common vocabulary contexts.
|
|
1929
|
+
- "pole"
|
|
1930
|
+
# Recognize poll as a complete English word in common vocabulary contexts.
|
|
1931
|
+
- "poll"
|
|
1932
|
+
# Recognize polo as a complete English word in common vocabulary contexts.
|
|
1933
|
+
- "polo"
|
|
1934
|
+
# Recognize pond as a complete English word in common vocabulary contexts.
|
|
1935
|
+
- "pond"
|
|
1936
|
+
# Recognize pony as a complete English word in common vocabulary contexts.
|
|
1937
|
+
- "pony"
|
|
1938
|
+
# Recognize poor as a complete English word in common vocabulary contexts.
|
|
1939
|
+
- "poor"
|
|
1940
|
+
# Recognize pope as a complete English word in common vocabulary contexts.
|
|
1941
|
+
- "pope"
|
|
1942
|
+
# Recognize pose as a complete English word in common vocabulary contexts.
|
|
1943
|
+
- "pose"
|
|
1944
|
+
# Recognize pour as a complete English word in common vocabulary contexts.
|
|
1945
|
+
- "pour"
|
|
1946
|
+
# Recognize pray as a complete English word in common vocabulary contexts.
|
|
1947
|
+
- "pray"
|
|
1948
|
+
# Recognize pump as a complete English word in common vocabulary contexts.
|
|
1949
|
+
- "pump"
|
|
1950
|
+
# Recognize quiz as a complete English word in common vocabulary contexts.
|
|
1951
|
+
- "quiz"
|
|
1952
|
+
# Recognize rack as a complete English word in common vocabulary contexts.
|
|
1953
|
+
- "rack"
|
|
1954
|
+
# Recognize rage as a complete English word in common vocabulary contexts.
|
|
1955
|
+
- "rage"
|
|
1956
|
+
# Recognize raid as a complete English word in common vocabulary contexts.
|
|
1957
|
+
- "raid"
|
|
1958
|
+
# Recognize rail as a complete English word in common vocabulary contexts.
|
|
1959
|
+
- "rail"
|
|
1960
|
+
# Recognize rare as a complete English word in common vocabulary contexts.
|
|
1961
|
+
- "rare"
|
|
1962
|
+
# Recognize rear as a complete English word in common vocabulary contexts.
|
|
1963
|
+
- "rear"
|
|
1964
|
+
# Recognize rely as a complete English word in common vocabulary contexts.
|
|
1965
|
+
- "rely"
|
|
1966
|
+
# Recognize rice as a complete English word in common vocabulary contexts.
|
|
1967
|
+
- "rice"
|
|
1968
|
+
# Recognize ride as a complete English word in common vocabulary contexts.
|
|
1969
|
+
- "ride"
|
|
1970
|
+
# Recognize rock as a complete English word in common vocabulary contexts.
|
|
1971
|
+
- "rock"
|
|
1972
|
+
# Recognize roof as a complete English word in common vocabulary contexts.
|
|
1973
|
+
- "roof"
|
|
1974
|
+
# Recognize rope as a complete English word in common vocabulary contexts.
|
|
1975
|
+
- "rope"
|
|
1976
|
+
# Recognize rose as a complete English word in common vocabulary contexts.
|
|
1977
|
+
- "rose"
|
|
1978
|
+
# Recognize ruin as a complete English word in common vocabulary contexts.
|
|
1979
|
+
- "ruin"
|
|
1980
|
+
# Recognize rush as a complete English word in common vocabulary contexts.
|
|
1981
|
+
- "rush"
|
|
1982
|
+
# Recognize rust as a complete English word in common vocabulary contexts.
|
|
1983
|
+
- "rust"
|
|
1984
|
+
# Recognize sack as a complete English word in common vocabulary contexts.
|
|
1985
|
+
- "sack"
|
|
1986
|
+
# Recognize sail as a complete English word in common vocabulary contexts.
|
|
1987
|
+
- "sail"
|
|
1988
|
+
# Recognize sake as a complete English word in common vocabulary contexts.
|
|
1989
|
+
- "sake"
|
|
1990
|
+
# Recognize sale as a complete English word in common vocabulary contexts.
|
|
1991
|
+
- "sale"
|
|
1992
|
+
# Recognize salt as a complete English word in common vocabulary contexts.
|
|
1993
|
+
- "salt"
|
|
1994
|
+
# Recognize same as a complete English word in common vocabulary contexts.
|
|
1995
|
+
- "same"
|
|
1996
|
+
# Recognize sand as a complete English word in common vocabulary contexts.
|
|
1997
|
+
- "sand"
|
|
1998
|
+
# Recognize seed as a complete English word in common vocabulary contexts.
|
|
1999
|
+
- "seed"
|
|
2000
|
+
# Recognize seem as a complete English word in common vocabulary contexts.
|
|
2001
|
+
- "seem"
|
|
2002
|
+
# Recognize seen as a complete English word in common vocabulary contexts.
|
|
2003
|
+
- "seen"
|
|
2004
|
+
# Recognize sent as a complete English word in common vocabulary contexts.
|
|
2005
|
+
- "sent"
|
|
2006
|
+
# Recognize shed as a complete English word in common vocabulary contexts.
|
|
2007
|
+
- "shed"
|
|
2008
|
+
# Recognize shoe as a complete English word in common vocabulary contexts.
|
|
2009
|
+
- "shoe"
|
|
2010
|
+
# Recognize shot as a complete English word in common vocabulary contexts.
|
|
2011
|
+
- "shot"
|
|
2012
|
+
# Recognize sick as a complete English word in common vocabulary contexts.
|
|
2013
|
+
- "sick"
|
|
2014
|
+
# Recognize sigh as a complete English word in common vocabulary contexts.
|
|
2015
|
+
- "sigh"
|
|
2016
|
+
# Recognize silk as a complete English word in common vocabulary contexts.
|
|
2017
|
+
- "silk"
|
|
2018
|
+
# Recognize sink as a complete English word in common vocabulary contexts.
|
|
2019
|
+
- "sink"
|
|
2020
|
+
# Recognize skin as a complete English word in common vocabulary contexts.
|
|
2021
|
+
- "skin"
|
|
2022
|
+
# Recognize slap as a complete English word in common vocabulary contexts.
|
|
2023
|
+
- "slap"
|
|
2024
|
+
# Recognize snow as a complete English word in common vocabulary contexts.
|
|
2025
|
+
- "snow"
|
|
2026
|
+
# Recognize soak as a complete English word in common vocabulary contexts.
|
|
2027
|
+
- "soak"
|
|
2028
|
+
# Recognize soap as a complete English word in common vocabulary contexts.
|
|
2029
|
+
- "soap"
|
|
2030
|
+
# Recognize soil as a complete English word in common vocabulary contexts.
|
|
2031
|
+
- "soil"
|
|
2032
|
+
# Recognize sold as a complete English word in common vocabulary contexts.
|
|
2033
|
+
- "sold"
|
|
2034
|
+
# Recognize sole as a complete English word in common vocabulary contexts.
|
|
2035
|
+
- "sole"
|
|
2036
|
+
# Recognize song as a complete English word in common vocabulary contexts.
|
|
2037
|
+
- "song"
|
|
2038
|
+
# Recognize soon as a complete English word in common vocabulary contexts.
|
|
2039
|
+
- "soon"
|
|
2040
|
+
# Recognize soul as a complete English word in common vocabulary contexts.
|
|
2041
|
+
- "soul"
|
|
2042
|
+
# Recognize sour as a complete English word in common vocabulary contexts.
|
|
2043
|
+
- "sour"
|
|
2044
|
+
# Recognize span as a complete English word in common vocabulary contexts.
|
|
2045
|
+
- "span"
|
|
2046
|
+
# Recognize spit as a complete English word in common vocabulary contexts.
|
|
2047
|
+
- "spit"
|
|
2048
|
+
# Recognize stem as a complete English word in common vocabulary contexts.
|
|
2049
|
+
- "stem"
|
|
2050
|
+
# Recognize surf as a complete English word in common vocabulary contexts.
|
|
2051
|
+
- "surf"
|
|
2052
|
+
# Recognize swim as a complete English word in common vocabulary contexts.
|
|
2053
|
+
- "swim"
|
|
2054
|
+
# Recognize swing as a complete English word in common vocabulary contexts.
|
|
2055
|
+
- "swing"
|
|
2056
|
+
# Recognize tale as a complete English word in common vocabulary contexts.
|
|
2057
|
+
- "tale"
|
|
2058
|
+
# Recognize tall as a complete English word in common vocabulary contexts.
|
|
2059
|
+
- "tall"
|
|
2060
|
+
# Recognize tank as a complete English word in common vocabulary contexts.
|
|
2061
|
+
- "tank"
|
|
2062
|
+
# Recognize taxi as a complete English word in common vocabulary contexts.
|
|
2063
|
+
- "taxi"
|
|
2064
|
+
# Recognize tear as a complete English word in common vocabulary contexts.
|
|
2065
|
+
- "tear"
|
|
2066
|
+
# Recognize tend as a complete English word in common vocabulary contexts.
|
|
2067
|
+
- "tend"
|
|
2068
|
+
# Recognize tent as a complete English word in common vocabulary contexts.
|
|
2069
|
+
- "tent"
|
|
2070
|
+
# Recognize they as a complete English word in common vocabulary contexts.
|
|
2071
|
+
- "they"
|
|
2072
|
+
# Recognize thus as a complete English word in common vocabulary contexts.
|
|
2073
|
+
- "thus"
|
|
2074
|
+
# Recognize tidy as a complete English word in common vocabulary contexts.
|
|
2075
|
+
- "tidy"
|
|
2076
|
+
# Recognize till as a complete English word in common vocabulary contexts.
|
|
2077
|
+
- "till"
|
|
2078
|
+
# Recognize tilt as a complete English word in common vocabulary contexts.
|
|
2079
|
+
- "tilt"
|
|
2080
|
+
# Recognize tire as a complete English word in common vocabulary contexts.
|
|
2081
|
+
- "tire"
|
|
2082
|
+
# Recognize told as a complete English word in common vocabulary contexts.
|
|
2083
|
+
- "told"
|
|
2084
|
+
# Recognize took as a complete English word in common vocabulary contexts.
|
|
2085
|
+
- "took"
|
|
2086
|
+
# Recognize torn as a complete English word in common vocabulary contexts.
|
|
2087
|
+
- "torn"
|
|
2088
|
+
# Recognize toss as a complete English word in common vocabulary contexts.
|
|
2089
|
+
- "toss"
|
|
2090
|
+
# Recognize trip as a complete English word in common vocabulary contexts.
|
|
2091
|
+
- "trip"
|
|
2092
|
+
# Recognize tune as a complete English word in common vocabulary contexts.
|
|
2093
|
+
- "tune"
|
|
2094
|
+
# Recognize ugly as a complete English word in common vocabulary contexts.
|
|
2095
|
+
- "ugly"
|
|
2096
|
+
# Recognize undo as a complete English word in common vocabulary contexts.
|
|
2097
|
+
- "undo"
|
|
2098
|
+
# Recognize used as a complete English word in common vocabulary contexts.
|
|
2099
|
+
- "used"
|
|
2100
|
+
# Recognize vain as a complete English word in common vocabulary contexts.
|
|
2101
|
+
- "vain"
|
|
2102
|
+
# Recognize vest as a complete English word in common vocabulary contexts.
|
|
2103
|
+
- "vest"
|
|
2104
|
+
# Recognize visa as a complete English word in common vocabulary contexts.
|
|
2105
|
+
- "visa"
|
|
2106
|
+
# Recognize void as a complete English word in common vocabulary contexts.
|
|
2107
|
+
- "void"
|
|
2108
|
+
# Recognize vote as a complete English word in common vocabulary contexts.
|
|
2109
|
+
- "vote"
|
|
2110
|
+
# Recognize wage as a complete English word in common vocabulary contexts.
|
|
2111
|
+
- "wage"
|
|
2112
|
+
# Recognize weed as a complete English word in common vocabulary contexts.
|
|
2113
|
+
- "weed"
|
|
2114
|
+
# Recognize what as a complete English word in common vocabulary contexts.
|
|
2115
|
+
- "what"
|
|
2116
|
+
# Recognize when as a complete English word in common vocabulary contexts.
|
|
2117
|
+
- "when"
|
|
2118
|
+
# Recognize whom as a complete English word in common vocabulary contexts.
|
|
2119
|
+
- "whom"
|
|
2120
|
+
# Recognize wide as a complete English word in common vocabulary contexts.
|
|
2121
|
+
- "wide"
|
|
2122
|
+
# Recognize wife as a complete English word in common vocabulary contexts.
|
|
2123
|
+
- "wife"
|
|
2124
|
+
# Recognize wine as a complete English word in common vocabulary contexts.
|
|
2125
|
+
- "wine"
|
|
2126
|
+
# Recognize wipe as a complete English word in common vocabulary contexts.
|
|
2127
|
+
- "wipe"
|
|
2128
|
+
# Recognize woke as a complete English word in common vocabulary contexts.
|
|
2129
|
+
- "woke"
|
|
2130
|
+
# Recognize wolf as a complete English word in common vocabulary contexts.
|
|
2131
|
+
- "wolf"
|
|
2132
|
+
# Recognize wood as a complete English word in common vocabulary contexts.
|
|
2133
|
+
- "wood"
|
|
2134
|
+
# Recognize wool as a complete English word in common vocabulary contexts.
|
|
2135
|
+
- "wool"
|
|
2136
|
+
# Recognize wore as a complete English word in common vocabulary contexts.
|
|
2137
|
+
- "wore"
|
|
2138
|
+
# Recognize worm as a complete English word in common vocabulary contexts.
|
|
2139
|
+
- "worm"
|
|
2140
|
+
# Recognize worn as a complete English word in common vocabulary contexts.
|
|
2141
|
+
- "worn"
|
|
2142
|
+
# Recognize zoom as a complete English word in common vocabulary contexts.
|
|
2143
|
+
- "zoom"
|
|
1268
2144
|
|
|
1269
2145
|
# Keywords that start source lines exempt from the preceding-comment requirement.
|
|
1270
2146
|
comment_exempt:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: CLASPLint
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.4
|
|
4
4
|
Summary: CLASP 3.2 / PEP 2606 Static Analysis Tool — enforces naming and comment conventions beyond PEP 8.
|
|
5
5
|
Author: Matt Belfast Brown
|
|
6
6
|
Author-email: Matt Belfast Brown <thedayofthedo@gmail.com>
|
|
@@ -31,7 +31,7 @@ License-File: LICENSE
|
|
|
31
31
|
|
|
32
32
|
[](https://www.python.org/)
|
|
33
33
|
[](./LICENSE)
|
|
34
|
-
[](https://pypi.org/project/CLASPLint/)
|
|
35
35
|
|
|
36
36
|
> **CLASP 3.2 / PEP 2606** static analysis tool. Enforces naming and comment conventions **beyond PEP 8** —
|
|
37
37
|
> checks variables, dictionary keys, functions, classes, comments, and log messages for standards compliance.
|
|
@@ -205,7 +205,7 @@ CLASPLint supports **Python 3.8 through 3.14**. The minimum version is 3.8 due t
|
|
|
205
205
|
|
|
206
206
|
[](https://www.python.org/)
|
|
207
207
|
[](./LICENSE)
|
|
208
|
-
[](https://pypi.org/project/CLASPLint/)
|
|
209
209
|
|
|
210
210
|
> **CLASP 3.2 / PEP 2606** 静态分析工具。在 PEP 8 **之上**强制执行命名与注释规范 ——
|
|
211
211
|
> 检查变量、字典键、函数、类、注释和日志消息是否符合标准。
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: CLASPLint
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.4
|
|
4
4
|
Summary: CLASP 3.2 / PEP 2606 Static Analysis Tool — enforces naming and comment conventions beyond PEP 8.
|
|
5
5
|
Author: Matt Belfast Brown
|
|
6
6
|
Author-email: Matt Belfast Brown <thedayofthedo@gmail.com>
|
|
@@ -31,7 +31,7 @@ License-File: LICENSE
|
|
|
31
31
|
|
|
32
32
|
[](https://www.python.org/)
|
|
33
33
|
[](./LICENSE)
|
|
34
|
-
[](https://pypi.org/project/CLASPLint/)
|
|
35
35
|
|
|
36
36
|
> **CLASP 3.2 / PEP 2606** static analysis tool. Enforces naming and comment conventions **beyond PEP 8** —
|
|
37
37
|
> checks variables, dictionary keys, functions, classes, comments, and log messages for standards compliance.
|
|
@@ -205,7 +205,7 @@ CLASPLint supports **Python 3.8 through 3.14**. The minimum version is 3.8 due t
|
|
|
205
205
|
|
|
206
206
|
[](https://www.python.org/)
|
|
207
207
|
[](./LICENSE)
|
|
208
|
-
[](https://pypi.org/project/CLASPLint/)
|
|
209
209
|
|
|
210
210
|
> **CLASP 3.2 / PEP 2606** 静态分析工具。在 PEP 8 **之上**强制执行命名与注释规范 ——
|
|
211
211
|
> 检查变量、字典键、函数、类、注释和日志消息是否符合标准。
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.python.org/)
|
|
4
4
|
[](./LICENSE)
|
|
5
|
-
[](https://pypi.org/project/CLASPLint/)
|
|
6
6
|
|
|
7
7
|
> **CLASP 3.2 / PEP 2606** static analysis tool. Enforces naming and comment conventions **beyond PEP 8** —
|
|
8
8
|
> checks variables, dictionary keys, functions, classes, comments, and log messages for standards compliance.
|
|
@@ -176,7 +176,7 @@ CLASPLint supports **Python 3.8 through 3.14**. The minimum version is 3.8 due t
|
|
|
176
176
|
|
|
177
177
|
[](https://www.python.org/)
|
|
178
178
|
[](./LICENSE)
|
|
179
|
-
[](https://pypi.org/project/CLASPLint/)
|
|
180
180
|
|
|
181
181
|
> **CLASP 3.2 / PEP 2606** 静态分析工具。在 PEP 8 **之上**强制执行命名与注释规范 ——
|
|
182
182
|
> 检查变量、字典键、函数、类、注释和日志消息是否符合标准。
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "CLASPLint"
|
|
7
|
-
version = "0.4.
|
|
7
|
+
version = "0.4.4"
|
|
8
8
|
description = "CLASP 3.2 / PEP 2606 Static Analysis Tool — enforces naming and comment conventions beyond PEP 8."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "GPL-3.0-only"}
|
|
@@ -26,7 +26,7 @@ PROJECT CREATE DATE : 2026-06-17
|
|
|
26
26
|
|
|
27
27
|
PROJECT VERSION DATE : 2026-07-06
|
|
28
28
|
|
|
29
|
-
PROJECT VERSION : 0.4.
|
|
29
|
+
PROJECT VERSION : 0.4.4
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
FILE CREATE DATE : 2026-06-17
|
|
@@ -77,7 +77,7 @@ setup(
|
|
|
77
77
|
# Declare the package name used for PyPI registration and pip install.
|
|
78
78
|
name="CLASPLint",
|
|
79
79
|
# Declare the semantic version following major.minor.patch convention.
|
|
80
|
-
version="0.4.
|
|
80
|
+
version="0.4.4",
|
|
81
81
|
|
|
82
82
|
# Provide a brief description of the tool for PyPI and help text.
|
|
83
83
|
description="CLASP 3.2 / PEP 2606 Static Analysis Tool",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|