Changes between Version 43 and Version 44 of Coding_Conventions


Ignore:
Timestamp:
Jun 28, 2019, 6:03:45 PM (5 years ago)
Author:
bb
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Coding_Conventions

    v43 v44  
    408408
    409409== JSON==
    410 * basically follow the JS formatting conventions
    411 * when on the same line, insert spaces after {, [, and : and before ] and }; e.g. `{ "foo": "bar" }` and `[ "foo", "bar" ]`
    412 * use tabs for indentation, not spaces
     410* Basically follow the JS formatting conventions
     411* When on the same line, insert spaces after `{`, and `:` and before `}`, but not after `[` or before `]`; e.g. `{ "foo": "bar" }` and `["foo", "bar"]`
     412* Use tabs for indentation, not spaces
    413413
    414414