I try various config .eslintrc.js files in the project and here is the question I had.
In the extends section, how does the connection order work and what will happen to the rules that conflict with each other? Suppose I have not some standard set of rules like
extends: ['plugin:vue/essential', 'airbnb-base'],
and a hodgepodge of a large number of rule packages taken from some article ( here, for example, a large bundle).
It is unlikely that the authors checked their rules for compatibility with each other, it is possible that there will be some conflicting rules in different packages. Will the first rule apply? Last thing? Both will be applied and two opposite messages like "there should be single quotes" / "there should be double quotes" at once will be visible?