@passport-next/eslint-config-passport-next
v2.0.0
Published
Passport Next eslint config common to all repos forked from https://github.com/brettz9/eslint-config-ash-nazg
Downloads
18
Readme
@passport-next/eslint-config-passport-next
Forked from https://github.com/brettz9/eslint-config-ash-nazg
A ruthless--though not arbitrary--degree of control for your kingdom!
One ring to rule them all!
The rules
See index.js (and node.js for ash-nazg/node
rules) for the rules we explicitly include (and see
sauron.js for the even stricter ash-nazg/sauron
rules or
great-eye (or great-eye-node) for
still stricter rules though which are probably best not used).
(See explicitly-unused.js for the core and extended rules we don't include (rationale for non-inclusion below).)
- Main rules (also search for "error" within https://github.com/eslint/eslint/blob/master/conf/eslint-recommended.js) for the
eslint:recommended
rules we inherit (though see below for our two modifications to these). - "standard" rules we inherit (though see below for our handful of modifications).
- mysticatea/eslint-plugin
for a number of added rules (though with a few items disabled and enabled
as per below), including all of
@mysticatea/eslint-comments/recommended
. - eslint-plugin-no-use-extend-native for one added rule.
- Recommended Unicorn rules (a few items disabled and enabled as per below)
- eslint-plugin-array-func for further rules
I've focused below on deviations because the original sites tend to already articulate the usefulness of the rules I have incorporated for these plugins/configs. This is for tracking design choices and not disparaging the utility of non-included rules.
Other bundled configs
The ash-nazg/node
config expands upon the regular ash-nazg
rules to
add rules specific to Node environments. Specifically,
plugin:node/recommended-module
has been adopted for now along with
some stylistic choices.
The ash-nazg/sauron
config expands upon the regular ash-nazg
rules to
indicate what are generally best practices but are less likely to be due to
an error and may possibly also require a high (and possibly tyrannical)
degree of refactoring for existing projects. See below for the rationales
for inclusion.
The ash-nazg/great-eye
and ash-nazg/great-eye-node
configs expands on
ash-nazg/sauron
(and ash-nazg/sauron-node
) to include
rules which enforce good practices, but which are so cumbersome and may
flag too much legitimate code that I personally won't regularly use them.
Still, I like to track them here, including in the event that their
config changes to make them less all-encompassing.
The ash-nazg/sauron-node
config incorporates both ash-nazg/node
and
ash-nazg/sauron
. It adds specific rules of its own which may be unduly
strict for ash-nazg/node
.
Comparison to other "standards"
eslint-config-ash-nazg
is a collection of some excellent preexisting
rules other projects have created, curated with the intent of attaining
productive strictness.
"standard" (config)
and eslint:recommended
have brought a welcome degree of
pseudo-standardization for code styling and error checking.
However, they do not impose as high of a degree of control as one may find desirable to enforce common, sane styling practices, catch bad practices and hard-to-read patterns, or in some cases even catch errors.
Moreover, standard
enforces a few styling rules which are contrary to
regular JavaScript practice (e.g., its enforced absence of semi-colons).
ash-nazg
aims to offer defaults which adhere to norms, build upon
productive restrictions, and in a few cases, offer greater latitude
where some constraints are unduly confining.
To see which rules from an extended config ended up enabled (we are
typically inheriting "recommended" configs), see
/inherited-rules/implicitly-included
.
To see which rules from the extended config we disabled, see our relevant
config(s) (e.g., index.js
).
To see which rules from the plugin that each extended config derives from
(i.e., the non-recommended rules of a plug-in), see explicitly-unused.js
for ones we have consciously not used and see our relevant config(s)
(e.g., index.js
) for the ones we did add (alongside any recommended).
The unused
folder is used to capture any (non-recommended) rules which
are not explicitly either enabled or within explicitly-unused.js
(as
might be found during an update of our config dependencies), but it is
currently, and should hopefully remain, empty, as we wish to be
consciously aware of all rules from inherited projects and whether we
wished to include them. As far as new rules added to recommended
, we
can see these within diffs of inherited-rules/implicitly-included
files (built during development by npm run compare
).
Rationales for inclusion of dependent plug-ins
Besides incorporating more from ESLint core, we also add rules from a few other (peer) dependencies.
eslint-plugin-compat
- Though its list of browsers to support is not added by our code, it is a basic enough of a need to remind one of its need to be present (and to avoid needing to add the rule for it).eslint-plugin-import
- Besides being peer dependencies ofstandard
, this has some additional useful rules we apply.eslint-plugin-jsdoc
- provides a number of helpful rules for catching bad or incomplete JSDoc during development. Note that we do not imposejsdoc/require-jsdoc
except as a warning inash-nazg/sauron
mode, so all of theeslint-plugin-jsdoc
rules should only apply when JSDoc is used. We also avoid some ofeslint-plugin-jsdoc
stricter checking requirements for descriptions.eslint-plugin-markdown
- Another basic use case is ensuring code snippets are linted, which is why this is expected. You may find its discussion ofoverrides
helpful for tweaking rules for Markdown (and you may also wish to useoverrides
, for theeslint-plugin-jsdoc
rulecheck-examples
if you wish to lint your JSDoc examples according to different standards). You must pass the file extension within the--ext
flag, e.g.,--ext .md,.js
to get this to take effect.eslint-plugin-html
- One basic use case is ensuring HTML is linted, which is why this is expected. You may wish to useoverrides
for HTML-specific rules or enable the plugin's own rules. You must pass the file extension within the--ext
flag, e.g.,--ext .html,.htm,.js
to get this to take effect.eslint-plugin-promise
- Besides being peer dependencies ofstandard
, this has some additional useful rules we apply.
Deviations
Deviation from eslint:recommended
In comparison to eslint:recommended
, ash-nazg only adds restrictions with
the exceptions of:
- Loosening the ESLint < 6 requirement of
no-console
into a mere warning and only in the stricterash-nazg/sauron
configuration. This is for the reason that console logging is too useful for debugging (and sometimes for reporting progress) to have to disable it at every turn and to distract one from actual errors. - Change
no-empty
so thatallowEmptyCatch
istrue
. There are enough cases where one legitimately needs to suppress errors.
Rationale for overriding standard
rules
semi
- Even if not strictly required, semi-colons are conventional in JavaScript and help denote the end of statements (as opposed to the end of a line which may continue).indent
- While it may take some getting used to, 2 spaces does allow more in one's field of vision. However, changed to useouterIIFEBody
for avoiding indents with the IIFE body, as this often minimizes indent level for much or all of the whole file.object-property-newline
- Properties on the same line can be very convenient, including stacking for space to avoid max length (though without stacking the height too high).one-var
- While I normally favor enforcing conventions, this one seems to me to be of little consequence. It also prevents grouping like items together. I might favor an option to require separate lines for variable declarations, but for uninitialized ones, adding to the same line is convenient, especially for single-letter variables. I would like a rule to have declarations as close as possible to being just above any used scopes (forlet
andconst
).object-curly-spacing
- Not sure whystandard
switched from the default here.
Rationale for changing required rules' configuration away from ESLint defaults
While these are not part of standard
or eslint-recommended
, I've noted
here why we have deviated from the defaults set by ESLint for those applying
the rule.
function-paren-newline
- The default multiline can get too long whereas "consistent" can be clean and short.multiline-ternary
- Inline ternary can be very readable when not spanning linesno-empty
- Empty catches occur frequently enough to justifyallowEmptyCatch
no-mixed-requires
- Grouping is more organized, while calls are compellingly convenientno-restricted-globals
- Use example defaults forevent
(andfdescribe
) as convenientno-restricted-properties
- Use example default of restricting__defineGetter__
in favor ofObject.defineProperty
as convenientno-restricted-syntax
- Set to eliminate any use ofinstanceof
(as it is not cross-frame safe, except if usingSymbol.hasInstance
)no-shadow
- It is better practice not to confuse by using globals! I didn't feel the examples for allowing necessitated their use. I added"parent"
,"top"
,"open"
,"close"
,"stop"
,"blur"
,"status"
,"name"
,"closed"
, and"start"
toallow
as frequent local variables technically shadowing globals (start
for QUnit env).object-shorthand
- EnablingavoidExplicitReturnArrows
as methods withoutthis
that this rule grabs (which have their own meaning with arrow functions) are more succinctly expressed in shorthand, and shorthand also conduces better to events wherethis
refers to the element (unless one needs the outer scopethis
). The optionavoidExplicitReturnArrows
does not avoid if the functions havethis
(though this isn't currently documented); this is probably good, though use ofthis
may signal an error if within a methodprefer-destructuring
- Did not set array to true due to its problems with direct access of large numbers (requiring many commas) and non-iterable ‘array-like’ objects.quote-props
- Changed to "as-needed" as properties more verbose and uglier with quotingimport/order
- Enforcing "builtin", "external", "internal" and then ["parent", "sibling", "index"] in any order as these may be project-specific.
Rationale for not including some rules
The following rules are not included within eslint:recommended
or standard
,
nor have we chosen to include them in any of the ash-nazg
rules.
Note: italicized items refer to features I might enable if the described
option could become available (or upon further review). I might also tweak
some standard
rules further which I have not had time to examine (but
it would probably be toward the stricter rather than looser as I have been
happy with it thus far).
array-bracket-newline
- Switched to "consistent" over "always" as sometimes nice to be a little condensed, especially when representing HTML as JSON within Jamilih (or JsonML) templates.array-element-newline
- While the "consistent" option would be nice, it doesn't work well to keep up with a max width and the desire to avoid excessive height[\n a, b, \n c, d\n]
arrow-body-style
- Withas-needed
andrequireReturnForObjectLiteral
, this seems reasonable, but too often in debugging, one needs to add brackets to do any logging.radix
- We're only dealing with ES5+ environments, so the radix is redundant for base 10.func-names
- Too prohibitive, though if applied to methods only, it may be useful (though with object shorthand, less necessary)func-style
- Declarations are simpler so appealing also. If enabling, would also wantallowArrowFunctions
.id-blacklist
- Can be helpful but a little tyrannicalid-length
- Can be helpful (especially a minimum) but a little tyrannicalid-match
- Too project-specificinit-declarations
- Nice with "always" andignoreForLoopInit
, but cumbersome and seemingly wasteful at timesline-comment-position
- Too inflexible to enforce either waylines-around-comment
- Irksome to melines-between-class-members
- Don't feel any need for itmax-classes-per-file
- A bit tyrannicalmax-depth
- Sounds good but tyrannicalmax-lines-per-function
- A bit tyrannicalmax-lines
- A bit tyrannicalmax-params
- Can be troublesome when one is forced to abide by some APImultiline-comment-style
- Would be nice if allowed multiline "starred-block" OR "bare-block" given some one may wish as JSDoc-style and others notnewline-after-var
- Not very flexiblenewline-before-return
- Not very flexiblenewline-per-chained-call
- Not flexible in practiceno-continue
- Can be convenientno-invalid-this
- Sounds good but not useful for element event handlers/jQueryno-multi-assign
- Sounds good, but can be burdensomeno-negated-condition
- Is generally simpler, but it can be annoying if one wishes to get a much smaller condition body visible at the top.no-nested-ternary
- Nested ternaries can be helpful to avoid clutter of duplicated assignment codeno-param-reassign
- Can be helpful, but not convenient, including when making defaults against more thanundefined
(e.g.,null
)no-restricted-imports
- Project-specificno-restricted-modules
- Project-specificno-restricted-properties
- Might expand the listno-restricted-syntax
- Project-specific unless some forms exist which should be deprecatedno-ternary
- Not usefulno-undefined
-undefined
is ok for ES6 modules and strict code, so usingno-global-assign
andno-shadow-restricted-names
insteadno-underscore-dangle
- Too restrictiveno-useless-concat
- Too restrictive when one has certain formatting one wishes to draw outobject-curly-newline
- Doesn't allowlet f = {foo () { dosomething(); }};
one-var-declaration-per-line
- Sounds good, but too cumbersome for small integer or boolean inits, and the indented next lines are not as immediately clear that they belong to the declaration.padding-line-between-statements
- Might revisitprefer-arrow-callback
- Not compellingprefer-template
- Sounds good, but too cumbersome in practicesort-imports
- Would be useful with "warn" if could sort by multiple/single type and sort members while avoiding alphabetical sorting across imports which seems too rigidsort-keys
- Too cumbersomesort-vars
- Too cumbersome
Rationale for disabled import rules
import/no-restricted-paths
- Project-specificimport/no-internal-modules
- Don't see any advantageimport/no-cycle
- Don't see a problem with cyclic imports in ESMimport/no-nodejs-modules
- Useful for some projects, but not all including even client-side (though does offerallow
option)import/exports-last
- Has some reason for being, but nicer to see with declaration that the object is being exported. To find all, just search for "export"import/no-namespace
- While can be more efficient to import only what one needs, having a namespace can also avoid confusion.import/prefer-default-export
- Could even be a bad practice as ugly to import with non-defaults added laterimport/no-default-export
- Has some basis, but defaults are admittedly convenient. Let's not be so opinionated.import/no-named-export
- Could even be a bad practice as ugly to import with non-defaults added laterimport/no-relative-parent-imports
- Appealing in some ways, but too rigid for a broad standardimport/dynamic-import-chunkname
- Might revisit for warnings, but probably too specific for a broad standardimport/max-dependencies
- Too constrainingimport/no-unassigned-import
- Could be useful withallow
option, but that would be project-specific, and unassigned imports are needed for polyfillsimport/group-exports
- Too rigid as withexports-last
.
Rationale for disabled Node and Promise rules
node/prefer-promises/dns
and node/prefer-promises/fs
are good, but
a bit early with Node 12.
promise/no-native
is disabled as promises are essential--even, it
appears, to Dark Lords.
promise/param-names
can be too tyrannical in some cases.
Rationale for suppressing some eslint-plugin-jsdoc
rules
jsdoc/no-types
- Types have utility in jsdoc unless using TypeScriptjsdoc/newline-after-description
(recommended) - I can see its draw, but seems too pedantic to me for documentation.jsdoc/no-undefined-types
(recommended) - I'd like something like this, but since it isn't aware of all of one's@typedef
s, etc., it is too restrictive for me at this time.jsdoc/require-description-complete-sentence
seems like a good idea, as English mistakes can be jarring as with bad styling, but this didn't seem to work too well. I usejsdoc/match-description
with a special value to capture a subset of this.jsdoc/require-hyphen-before-param-description
- I can see its draw, but seems too pedantic to me for documentation.
Rationale for disabling some unicorn
rules
(The following are recommended rules unless otherwise noted.)
catch-error-name
- It can actually be useful to use different error names to indicate what time of error may be expected.explicit-length-check
- Seems wasteful.filename-case
- Looks potentially useful withcamelCase
.throw-new-error
- Potentially confining.no-unreadable-array-destructuring
- Better to use this than multiple linesimport-index
- While understandable, seems may cause more trouble in making it harder to find references toindex
.no-unused-properties
- While no doubt useful, it won't catch all cases, sounds computationally expensive, and may better be done with TypeScript
Rationale for including some Unicorn rules which are disabled in plugin:unicorn/recommended
unicorn/custom-error-definition
- Does not seem confining.unicorn/no-unsafe-regex
- Seems like something to watch for, though I may revisit if this reports too many common expressions.
Rationale for including eslint-comments rules which are not in plugin:eslint-comments/recommended
eslint-comments/no-unused-disable
- Might be indicative of an error and inefficient in any case
Rationale for changing eslint-comments rules from default recommended
eslint-comments/disable-enable-pair
- If at top, behavior is clear, and
no need to reenable within doc
Rationale for not including some plugin:@mysticatea/es2019
rules
@mysticatea/arrow-parens
- Covered by other rules@mysticatea/no-instanceof-array
- Covered by our blocking of allinstanceof
@mysticatea/no-instanceof-wrapper
- Covered by our blocking of allinstanceof
@mysticatea/prefer-for-of
- I prefer array extras for easier reuse, currying, etc. thanfor-of
@mysticatea/eslint-comments/no-restricted-disable
- See no need@mysticatea/eslint-comments/no-use
- See no need@mysticatea/eslint-plugin/*
- Project more generic than ESLint plugins@mysticatea/ts/*
- Not supporting TypeScript@mysticatea/vue/*
- Project more generic than Vue.js@mysticatea/prettier
- Not interested in imposing prettier@mysticatea/no-use-ignored-vars
- Relies on a regex (for pseudo-privates) which can be useful
Rationale for not including some array-func
rules
array-func/prefer-array-from
- While it may benefit performance, it is more sleek to use the spread operator. Would like to know how much it impacts performance before enabling.
Rationale for not including some sonarjs
rules
(All sonarjs rules are currently "recommended" rules as well.)
max-switch-cases
- Sounds too arbitrary.no-collapsible-if
- Sometimes more logically clear or made in preparation for future expansionno-duplicate-string
- Often used in test files and repeated in fairly minor instances or instances repeated but spread out within a large fileno-identical-functions
- Often used in test files and repeated by fairly minor functions or functions repeated but spread out within a large fileno-small-switch
- Too useful to start a pattern to which one intends to add later.prefer-immediate-return
- Can be useful for documenting even if method name should be descriptive, especially if there are different returns with subtly different results
Rationale for including eslint-plugin-jsdoc rules which are not in plugin:jsdoc/recommended
check-examples
- If examples are present, they ought to follow one's standards, including if overrides are in place to loosen/tighten. Set to match any Markdown rules (.md
extension) by default and excludes any example beginning with a backtick.check-syntax
- Following jsdoc, not Closure syntaxmatch-description
- Cleaner to see complete sentences which its default allows.require-returns-check
- If the return value doesn't match, there may be a problem.
Rationale for only including some rules within ash-nazg/sauron
These are good practices, but cumbersome, not as familiar to developers, prohibitive during ongoing debugging or conversion of existing projects, etc. But perhaps useful for a new project which can pay closer attention to standards without the undue burden of having to refactor lots of code (which may not all be under one's control).
class-methods-use-this
- Good for new code (though even here may need disabling). May break existing APIs.consistent-this
- A good practice, but sometimes, especially with jQuery or DOM event handlers, and large functions where it can be difficult to track what a genericthat
is in reference to,this
may be more clearly named as the objectdefault-case
- Refactoring code to know whether to throw or silently ignore requires time.max-len
- May require a lot of refactoring.no-alert
- No quick easy replacement yet with poordialog
support.no-console
- Useful for debugging (and sometimes for reporting progress) to have to disable it at every turn and to distract one from actual errors, even for production.no-empty-function
- Cumbersome to add comments within every no-op.no-shadow
- Can catch errors, but also some work to refactor (See also section "Rationale for changing required rules' configuration away from defaults".)prefer-numeric-literals
- Good but some work.require-unicode-regexp
- Good, but some work to fix all.vars-on-top
- Not needed forlet
/const
, and if overriding, this is cumbersome, despite being usefulimport/unambiguous
- A good practice, and one whichoverrides
can override (e.g., for polyfills or simple HTML tests), but cumbersome to label all filespromise/prefer-await-to-callbacks
- Sometimes useful, but callbacks may be used within repeating eventsunicorn/no-fn-reference-in-iterator
- May be cumbersome though does catch potential problemsjsdoc/require-returns
(recommended) - Put inash-nazg/sauron
as it is more than just a consistent styling convention, and it is not impossible to follow, but a bit difficult. AddedforceRequireReturn
option to ensure return type considered even ifvoid
/undefined
.jsdoc/require-jsdoc
(recommended) - Imposes a heavy burden on preexisting large projects (added as "error" ingreat-eye.js
)
The forceRequireReturn
setting was also applied therein as it may be
cumbersome to add to all returns or not favored as a requirement in
all projects though it does note that a method's return was considered
even if undefined
.
The preferredTypes
setting was enabled here as it can be cumbersome
for projects to specify all child types.
Rationale for only including some rules within ash-nazg/great-eye
capitalized-comments
- May be very prevalent; reports with commented out codecomplexity
- A generally good practice, but can be work to refactor, and sometimes impractical to enforce.max-statements-per-line
- Tyrannical when prohibiting single-lineif (...) { continue; }
; might revisit if allowed for control statementsmax-statements
- A bit tyrannical even if good for clear codeno-magic-numbers
- Very helpful for clear code, but cumbersome, and sometimes very cumbersome.no-plusplus
- Would be nice if there were an option to allow if not combined inline with other expressionsno-warning-comments
- Good to catch to-dos, but better to search or parse code as a separate process rather than polluting one's ESLint warnings--some to-dos are ok to be left for the long termimport/no-unused-modules
- Useful (formissingExports
at least), but doesn't catch dynamic imports and reports for other deliberately non-modular scriptsjsdoc/check-alignment
(recommended) - A pretty good practice, but not that important.jsdoc/check-indentation
- A pretty good practice, but that that important.jsdoc/require-description
- Though a very good practices, this is difficult for large code bases to implement and even cumbersome for new ones to have to follow for lesser parameters, so that's why they are not even inash-nazg/sauron
, though if you feel you can succeed at imposing such rigor for your hordes of developer minions, by all means, have a hand at it...jsdoc/require-param-description
(recommended) - Seejsdoc/require-description
.jsdoc/require-returns-description
(recommended) - Seejsdoc/require-description
.jsdoc/require-example
- Seejsdoc/require-description
.sonarjs/cognitive-complexity
- As withcomplexity
perhaps (though may add to sauron if demonstrates not to be too oppressive)unicorn/prevent-abbreviations
- Very cumbersome for frequent conventions such ase
forevent
The preferredTypes
setting was enabled here for integer/float as it can
be cumbersome for projects to distinguish.
Rationale for including rules that might not seem necessary
no-implicit-globals
- Included despite not applying to modules, in case overriding.strict
- Included despite not being needed for modules, in case overriding.
Deprecated rule non-inclusion
Deprecated and removed items from ESLint are also naturally not included.
Contributing
While I will admit to being opinionated, and one may need to disable some rules (or possibly add a few ones mentioned in my non-inclusion sections), feel free to file issues if you really feel there are compelling reasons for different defaults. But again, I have to add caution that ring bearers can be picky about giving up their preh-shus...
To-dos
- Waiting: Add eslint-plugin-no-constructor-bind when class properties start landing
- Add own rules:
- Review https://github.com/dustinspecker/awesome-eslint#practices
- See if https://github.com/sarbbottam/eslint-find-rules may eliminate need for our comparison code