.eslintrc.json 379 B

123456789101112131415161718
  1. {
  2. "env": {
  3. "jest": true
  4. },
  5. "parserOptions": {
  6. "ecmaVersion": 2020,
  7. "sourceType": "module"
  8. },
  9. "extends": ["prettier"],
  10. "plugins": ["prettier"],
  11. "rules": {
  12. "camelcase": ["error", { "allow": ["^unstable_"] }],
  13. "no-unused-vars": [2, { "args": "all", "argsIgnorePattern": "^_" }],
  14. "no-warning-comments": 0,
  15. "prettier/prettier": "error"
  16. }
  17. }