Kevin Sun
Kevin Sun
Use git lfs ls-files to determine if we have LFS files in the index
https://peps.python.org/pep-0008/#imports We want imports to be strategically separated in the following method: 1. All system imports (packages included in standard Python distribution) 2. All third party imports (packages that needed...
https://peps.python.org/pep-0008/#comments Need to standardize comments throughout the code: - Block comments: # + space + comment - `# example comment` - Inline comments: 2 spaces + # + space +...
https://peps.python.org/pep-0008/#blank-lines Ensure all code in edkrepo fits the following criteria: - Surround top-level function and class definitions with two blank lines. - Method definitions inside a class are surrounded by...
https://peps.python.org/pep-0008/#maximum-line-length There may be areas in the code where some lines are of a very long length (>120 characters). Propose shortening them by breaking into multiple lines via the following...