- Issue created by @Liam Morland
There is a code example and passing mention of the use of strict mode in JavaScript files, but no clear statement that use strict
should be included in all JS files except modules.
Clarity. An example issue where it was not clear if use strict
should be included is
📌
Remove "use strict" statements from JS files
Active
.
None.
All JavaScript must be written in strict mode. Include
"use strict";
in every file except JavaScript modules.
For a full explanation of these steps see the Coding Standards project page →
Active
Coding Standards