Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Stylelint]paddingとmarginなどで値が複数設定されている場合、論理プロパティを使うように警告を出したい。 #116

Open
yusasa16 opened this issue Jun 25, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@yusasa16
Copy link

yusasa16 commented Jun 25, 2024

現状

stylelint-use-logicalを設定し、物理プロパティではなく論理プロパティを利用するようにチェックしている。
ただ、paddingやmarginといったショートハンドを使って複数の値を設定できるプロパティを使用するとチェックしない。

// 警告が出ている
padding-top: 2rem;

// 警告が出ていない
padding: 2rem 0 0;

こうしたい

paddingやmarginなどでひとつの値を設定した場合は警告を出さないが、
複数の値を設定した場合に論理プロパティを使うように警告を出す。

// 警告を出さない
padding: 2rem;

// 警告を出す
padding: 2rem 0 0;

参考

csstools/stylelint-use-logical#29

@yusasa16 yusasa16 added the enhancement New feature or request label Jun 25, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant