.eslintrc.json 463 B

12345678910111213141516171819202122232425
  1. {
  2. "root": true,
  3. "parserOptions": {
  4. "ecmaVersion": 2018
  5. },
  6. "extends": ["plugin:jest/recommended", "./node_modules/eslint-config-mdcs/index.js"],
  7. "plugins": [ "jest" ],
  8. "rules": {
  9. "no-unused-vars": [ 1, { "args": "none" } ],
  10. "no-throw-literal": [
  11. "error"
  12. ],
  13. "prefer-const": [
  14. "error",
  15. {
  16. "destructuring": "any",
  17. "ignoreReadBeforeAssign": false
  18. }
  19. ],
  20. "quotes": [ "error", "single" ],
  21. "indent": [ "error", "tab" ]
  22. }
  23. }