.eslintrc.js 351 B

12345678910
  1. module.exports = {
  2. extends: [
  3. // The oclif rules have some code-style/formatting rules which may conflict with
  4. // our prettier global settings. Disabling for now
  5. // I suggest to only add essential rules absolutely required to make the cli work with oclif
  6. // at the end of this file.
  7. // "oclif",
  8. // "oclif-typescript",
  9. ],
  10. }