Closed Bug 1354520 Opened 7 years ago Closed 7 years ago

De-duplicate already ESLint recommended rules in toolkit/components/reader/.eslintrc.js

Categories

(Developer Infrastructure :: Lint and Formatting, enhancement)

3 Branch
enhancement
Not set
normal

Tracking

(firefox55 fixed)

RESOLVED FIXED
mozilla55
Tracking Status
firefox55 --- fixed

People

(Reporter: standard8, Assigned: hemantsingh1612, Mentored)

References

Details

(Whiteboard: [lang=js])

Attachments

(1 file)

We now have a recommend set of rules for ESLint in Mozilla, I'd like for us to tidy up duplicates, so that it is easier to see where modules/different areas are different.

This bug is to tidy up toolkit/components/reader/.eslintrc.js

I'm happy to mentor this.

Recommended rules: https://dxr.mozilla.org/mozilla-central/source/tools/lint/eslint/eslint-plugin-mozilla/lib/configs/recommended.js

What needs doing (all in the file toolkit/components/reader/.eslintrc.js):

- Remove the extends section, as this is unnecessary (ESLint inherits rules through the directory tree).
- For the rules, globals and env sections, go through each one and compare to the recommended, then:
-- If it is the same (with the same parameters), remove the rule
-- If it is commented, remove it
-- If it is different, leave it in.
- Finally check ESLint still runs correctly (./mach eslint) and passes with no errors (warnings are ok if they are the same as previous).

Once that's done, attach a patch and request review from me (Standard8)
Blocks: 1354521
Hi Mark, I would like to work on this.
Flags: needinfo?(standard8)
Sure, please do.
Assignee: nobody → j.a.lam
Flags: needinfo?(standard8)
Hi Mark, I have started working on this but .eslintrc.js for me doesn't contain a globals and env section. It only has one section for rules. I am working through them with the specifications you mentioned but just want to make sure I am not missing anything.
Flags: needinfo?(standard8)
(In reply to Jeremy Lam from comment #3)
> Hi Mark, I have started working on this but .eslintrc.js for me doesn't
> contain a globals and env section. It only has one section for rules. I am
> working through them with the specifications you mentioned but just want to
> make sure I am not missing anything.

That's fine. Just ignore the references to the globals/env sections - I used the same wording as a template and forgot to check about those sections.
Flags: needinfo?(standard8)
I've just realised there's extra cleanup that can be done as well:

- If the .eslintrc.js file lists a rule as 'warn' and recommended.js lists it as 'error', then drop the rule in the .eslintrc.js file.

This will promote the rule to "error" which is better as it'll get fixed if it is an error, where as warnings tend to get ignored.
Hi 

It's been a while since there is no activity.I can go through it if assigned to me.
Flags: needinfo?(standard8)
I've not heard from Jeremy, so assigning to Hemant.

Jeremy: if you do want an easy bug, let me know and I can find one for you.
Assignee: j.a.lam → hemantsingh1612
Flags: needinfo?(standard8)
Comment on attachment 8863747 [details]
Bug 1354520 - De-duplicate already ESLint recommended rules in toolkit/components/reader/.eslintrc.js

https://reviewboard.mozilla.org/r/135526/#review138908

Looks great, just one minor point to address.

::: toolkit/components/reader/.eslintrc.js
(Diff revision 1)
> -
> -    // No expressions where a statement is expected
> -    // "no-unused-expressions": "error",
> -
> -    // No declaring variables that are never used
> -    "no-unused-vars": ["error", {"vars": "all", "args": "none"}],

Please keep the no-unused-vars here - it is slightly more strict than the recommended configuration (it applies to globals+locals rather than just locals)
Attachment #8863747 - Flags: review?(standard8)
Comment on attachment 8863747 [details]
Bug 1354520 - De-duplicate already ESLint recommended rules in toolkit/components/reader/.eslintrc.js

https://reviewboard.mozilla.org/r/135526/#review139254

Great, thank you for the update! r=Standard8.
Attachment #8863747 - Flags: review?(standard8) → review+
Pushed by mbanner@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/46af4ac75c82
De-duplicate already ESLint recommended rules in toolkit/components/reader/.eslintrc.js r=standard8
(In reply to Mark Banner (:standard8) from comment #11)
> Comment on attachment 8863747 [details]
> Bug 1354520 - De-duplicate already ESLint recommended rules in
> toolkit/components/reader/.eslintrc.js
> 
> https://reviewboard.mozilla.org/r/135526/#review139254
> 
> Great, thank you for the update! r=Standard8.

Please feel free to assign me bugs in future.:)
https://hg.mozilla.org/mozilla-central/rev/46af4ac75c82
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla55
Product: Testing → Firefox Build System
Keywords: good-first-bug
Version: Version 3 → 3 Branch
Product: Firefox Build System → Developer Infrastructure
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: