25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
260 B

  1. {
  2. "extends": "eslint:recommended",
  3. "parserOptions": {
  4. "sourceType": "module",
  5. "ecmaVersion": 8
  6. },
  7. "env": {
  8. "es6": true,
  9. "node": true,
  10. "browser": true
  11. },
  12. "rules": {
  13. "no-cond-assign": 0,
  14. "no-unexpected-multiline": 0
  15. }
  16. }