.eslintrc.js 518 B

1234567891011121314151617
  1. module.exports = {
  2. env: {
  3. mocha: true,
  4. },
  5. extends: [
  6. // The oclif rules have some code-style/formatting rules which may conflict with
  7. // our prettier global settings. Disabling for now
  8. // I suggest to only add essential rules absolutely required to make the cli work with oclif
  9. // at the end of this file.
  10. // "oclif",
  11. // "oclif-typescript",
  12. ],
  13. rules: {
  14. "no-unused-vars": "off", // Required by the typescript rule below
  15. "@typescript-eslint/no-unused-vars": ["error"]
  16. }
  17. }