Skip to content

Commit

Permalink
refactor: eliminate ^{s,b,f} hungarian notation (#36)
Browse files Browse the repository at this point in the history
Except for:
- `sOut`, for backwards compatibility, since it's included in public API

Via VSCode find and replace of:

- patt: `\b[bs](?!File)([A-Z]\w+)(?<!sOut)\b`
  with: `\l$1`
- patt: `\b[bs]File([A-Z]\w+)(?<!sOut)\b`
  with: `fileName$1`
- patt: `sFile`
  with: `fname`
- patt: `\bf([A-Z]\w+)\b`
  with: `file$1`
  • Loading branch information
vergenzt committed Apr 30, 2024
1 parent b3f39c4 commit 5a6f8c1
Show file tree
Hide file tree
Showing 2 changed files with 192 additions and 190 deletions.

0 comments on commit 5a6f8c1

Please sign in to comment.