.eslintrc.js 532 B

1234567891011121314
  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, to override @joystream/eslint-config
  7. // "oclif",
  8. // "oclif-typescript",
  9. // not strictly necessary becase we have this in the root and will be used
  10. // through cascading rules
  11. "@joystream/eslint-config",
  12. ]
  13. }