.eslintrc.json 206 B

12345678910111213141516
  1. {
  2. "extends": [
  3. "@masteringjs"
  4. ],
  5. "parserOptions": {
  6. "ecmaVersion": 2020
  7. },
  8. "env": {
  9. "node": true,
  10. "es6": true
  11. },
  12. "rules": {
  13. "no-var": "off",
  14. "prefer-const": "off"
  15. }
  16. }