eslint-config-protect-me-from-my-stupidity
Advanced tools
Changelog
3.1.3 - 2018-12-14
import/no-anonymous-default-export
rule off.Changelog
3.1.2 - 2018-11-29
strict
rule to only disallow strict mode directives when it is considered unsafe.Changelog
3.1.1 - 2018-10-29
import/order
rule to enforce the following import order:
import/no-unassigned-import
rule off.Changelog
3.1.0 - 2018-10-29
quote-props
rule to enforce consistency rather than necessity.linebreak-style
rule off.Changelog
3.0.0 - 2018-10-26
no-misleading-character-class
rule on to prohibit regular expressions containing characters with multiple code points.no-async-promise-executor
rule on to prohibit asynchronous executor functions.require-atomic-updates
rule on to help protect from subtle race conditions involving generators and promises.max-lines-per-function
and require-unicode-regexp
rules off.import/no-cycle
rule on to prohibit circular dependencies.import/no-self-import
rule on to prohibit a module from importing itself.import/no-useless-path-segments
rule on to enforce optimal module paths.import/dynamic-import-chunkname
, import/no-default-export
, import/no-deprecated
, import/no-named-export
and import/no-relative-parent-imports
rules off.promise/valid-params
rule on to enforce correct usage of all Promise methods.promise/no-new-statics
rule on to prohibit the use of the new
keyword with static Promise methods.eslint-plugin-import
version to 2.14.0
.eslint
version to 5.7.0
.eslint-plugin-promise
version to 4.0.0
.import/order
rule to enforce the following import order:
9
(2018).Changelog
2.1.1 - 2018-06-05
callback-return
, require-await
, no-else-return
and promise/no-native
rules off.Changelog
2.1.0 - 2018-04-16
indent
rule to enforce indentation for case
clauses inside switch
statements.Changelog
2.0.5 - 2018-04-16
operator-linebreak
rule off.Changelog
2.0.4 - 2018-02-03
operator-linebreak
rule to allow line breaks before the operator.func-name-matching
rule to ignore module.exports
.Changelog
2.0.3 - 2018-01-04
no-use-before-define
rule to allow functions to be used before they are defined.prefer-template
rule off.max-len
rule to allow lines to go up to 120 characters in length.