1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-01-16 21:58:21 +01:00
2
Constants
LogMANOriginal edited this page 2018-11-05 13:24:48 +01:00

Use UPPERCASE for constants

As in most languages, constants should be written in UPPERCASE.

Notice: This does not apply to keywords!

Example

Bad

const pi = 3.14;

Good

const PI = 3.14;

Reference: Generic.NamingConventions.UpperCaseConstantName