gon2

Untitled

Jan 30th, 2020
818
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. {
  2. "env": {
  3. "browser": true,
  4. "es6": true
  5. },
  6. "extends": "airbnb-base",
  7. "globals": {
  8. "Atomics": "readonly",
  9. "SharedArrayBuffer": "readonly"
  10. },
  11. "parserOptions": {
  12. "ecmaVersion": 2018,
  13. "sourceType": "module"
  14. },
  15. "rules": {
  16. "consistent-return": "off",
  17. "no-console": "off",
  18. "no-else-return": "off",
  19. "no-plusplus": "off",
  20. "no-undef": "off",
  21. "no-use-before-define": "off",
  22. "quotes": ["error", "single"]
  23. }
  24. }
  25.  
  26. ---------------------------------------------------------------------
  27.  
  28. "editor.codeActionsOnSave": {
  29. "source.fixAll": false,
  30. "source.fixAll.eslint": true
  31. },
Advertisement
Add Comment
Please, Sign In to add comment