GeoFS-Extensions / autoland

Accessible plugins for GeoFS, an online flight simulator.
https://geofsautoland.wixsite.com/autoland
GNU General Public License v3.0
6 stars 2 forks source link

[Suggestion]: Make all types follow UpperCamelCase #122

Closed nicolas377 closed 2 years ago

nicolas377 commented 2 years ago

Is there an existing issue for this?

Description

It's common form to have all non-primitive types capitalized using UpperCamelCase. Currently, types are defined using lowerCamelCase, which makes this line of code

let options: options = getOptions();

very weird. Instead, we should do something like this:

let options: Options = getOptions();

It's a very subtle difference, but it follows style, and makes the code more readable.

(Google uses this in their style guide for TypeScript)

Are there alternatives you've considered?

N/A