1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

slim-lintで怒られslimで改行したい時に便利な大括弧

Posted at

slim-lintで改行を求められた時に大括弧で解決する

普通に1行で書いてしまうと、余裕で怒られてしまう。

index.html
.conversion-button#conversion001 data-event-category="売り上げ追加:CV" data-event-action="資料ダウンロード" data-event-label="資料ID001" width="300" height="250" data-slot="/banner001" type="doubleclick"

大括弧を使うことで、みやすく自由に改行できるようになります。

index.html
.conversion-button#conversion001[
  data-event-category="売り上げ追加:CV"
  data-event-action="資料ダウンロード"
  data-event-label="資料ID001"
  width="300" height="250"
  data-slot="/banner001" type="doubleclick"]

slim-lintで怒られた時は大括弧優秀ですね。美しい。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?