You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.eslintrc.json 417B

1234567891011121314151617181920212223
  1. {
  2. "parserOptions": {
  3. "ecmaVersion": "latest",
  4. "sourceType": "module"
  5. },
  6. "env": {
  7. "browser": true,
  8. "es6": true
  9. },
  10. "extends": ["eslint:recommended", "prettier"],
  11. "rules": {
  12. "padded-blocks": "off",
  13. "no-unused-vars": [
  14. "error",
  15. {
  16. "vars": "all",
  17. "args": "after-used",
  18. "ignoreRestSiblings": true,
  19. "varsIgnorePattern": "^_"
  20. }
  21. ]
  22. }
  23. }