天天看點

eslint 出現一個報錯 declaration-colon-newline-after

報錯資訊:Expected newline after “:” with a multi-line declaration declaration-colon-newline-after

出現問題的代碼:

background: linear-gradient(
      360deg,
      rgba(255, 107, 49, 1) 0%,
      rgba(248, 83, 62, 1) 47%,
      rgba(255, 219, 118, 1) 100%
    );
    
    // 把rgba轉化成十六進制即可
      background: linear-gradient(360deg, #ff6b31 0%, #f8533e 47%, #ffdb76 100%);