@@ -46,7 +46,7 @@ fail-under=10
4646# from-stdin=
4747
4848# Files or directories to be skipped. They should be base names, not paths.
49- ignore =CVS, docs, data,
49+ ignore =CVS, docs, data,
5050
5151# Add files or directories matching the regular expressions patterns to the
5252# ignore-list. The regex matches against paths and can be in Posix or Windows
@@ -214,7 +214,7 @@ good-names=FlightPhases,
214214 HIRESW_dictionary,
215215 prop_I_11,
216216 Kt, # transformation matrix transposed
217- clalpha2D,
217+ clalpha2D,
218218 clalpha2D_incompressible,
219219 r_NOZ, # Nozzle position vector
220220 rocket_dry_I_33,
@@ -475,7 +475,7 @@ disable=raw-checker-failed,
475475 file-ignored,
476476 suppressed-message,
477477 useless-suppression,
478- deprecated-pragma, # because we have some peniding deprecations in the code.
478+ deprecated-pragma, # because we have some pending deprecations in the code.
479479 use-symbolic-message-instead,
480480 use-implicit-booleaness-not-comparison-to-string,
481481 use-implicit-booleaness-not-comparison-to-zero,
@@ -492,13 +492,14 @@ disable=raw-checker-failed,
492492 too-many-function-args, # gives false positives for Function calls
493493 method-hidden, # avoids some errors in tank_geometry and flight classes
494494 missing-timeout, # not a problem to use requests without timeout
495- protected-access, # we use private attriubutes out of the class (maybe we should fix this)
495+ protected-access, # we use private attributes out of the class (maybe we should fix this)
496496 duplicate-code, # repeating code is a bad thing, but should we really care about it?
497497 line-too-long, # black already takes care of this
498498 missing-function-docstring, # this is too verbose.
499499 redefined-outer-name, # too verbose, and doesn't add much value
500500 method-cache-max-size-none,
501501 no-else-raise, # pointless
502+ unnecessary-lambda-assignment, # ruff already checks this
502503
503504
504505
0 commit comments