- Issue created by @mandclu
- First commit to issue fork.
-
mandclu β
committed e4a28a79 on 6.3.x
Issue #3513032: Remove "use strict" statements from JS modules
-
mandclu β
committed e4a28a79 on 6.3.x
- π¨π¦Canada Liam Morland Ontario, CA π¨π¦
As I said in π Fix ESLint pipeline Active , the current eslint pipeline raises 23 errors like "'use strict' is unnecessary inside of modules", but this merge request removes use strict from 84 files. As I understand it, this should only be removed from the 23 files that are modules.
-
mandclu β
committed e4a28a79 on 6.x
Issue #3513032: Remove "use strict" statements from JS modules
-
mandclu β
committed e4a28a79 on 6.x
- πΊπΈUnited States jrockowitz Brooklyn, NY
I am for any patch that simplifies the JS code and is safe to commit.
Core at some point reversed https://www.drupal.org/node/1570578 β and use strict is no longer included in core JS.
- π¨π¦Canada Liam Morland Ontario, CA π¨π¦
I grepped Drupal core for
use strict
and there are 117 JavaScript files that have it. - π¨π¦Canada mandclu
I would be OK with reverting this change and opening a new MR with a more targeted implementation.
- π¨π¦Canada Liam Morland Ontario, CA π¨π¦
You could just have a single commit that adds
use strict
in places where it is needed. I suggest making a merge request that reverts the original commit. Then look at the eslint report and remove it only where eslint calls for it to be removed. Squash the changes on merge and you get a single commit neatly re-adding it where it is needed. Thanks - d87ea046 committed on 6.3.x
Revert "Issue #3513032: Remove "use strict" statements from JS modules...
- d87ea046 committed on 6.3.x
- π§πͺBelgium BramDriesen Belgium π§πͺ
Probably needs a rebase as well before re-attempting this as some modules are removed.
- π¨π¦Canada mandclu
I've uploaded two patch files generated by eslint, one before and one after the changes in the MR!621. It's worth noting that among the places eslint suggests removing the 'use strict' and the surrounding newlines, not all of them are within the modules. I have updated the issue title to reflect the fact that eslint suggests removal of 'use strict' more broadly.
This new MR focuses instead on the patterns identified by eslint for removal. The second patch file shows that all cited uses of 'use strict' are resolved by the new MR.