.eslintrc 318 B

12345678910111213141516
  1. {
  2. "env": {
  3. "node": true
  4. },
  5. "rules": {
  6. "eqeqeq": [2, "smart"],
  7. "indent": [2, 2],
  8. "no-constant-condition": false,
  9. "no-redeclare": 1,
  10. "no-underscore-dangle": false,
  11. "no-use-before-define": [true,"nofunc"],
  12. "quotes": [2, "single"],
  13. "space-before-blocks": 2,
  14. "strict": 2
  15. }
  16. }