-
Notifications
You must be signed in to change notification settings - Fork 483
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
Feature: Apply ../.csslintrc's up to ~/.csslintrc #529
Comments
👍 |
+1 |
I've got a (quite awful) reference implementation working for rc files scanned up to https://github.com/mcandre/cowl It's a start. |
edit: Nevermind. I was misinterpreting Github's UI a bit. Still, this feature is sorely missed. |
I would also like to see this feature. |
Is this issue the same as #704? Why has this no reply? Why is this so different from other Sublime linters? |
My workflows sometimes collide with csslint:
cd
'd several directories deeper than I usually callcsslint
, but I want to call it regardless, using the project root's.csslintrc
configuration.~/.csslintrc
for each one of them.We could make csslint behave more intuitively in these situations, by having it search for
.csslintrc
files in order from.
, to..
, and so on, until it finds one, or hits$HOME
and can't find one.As a workaround, I can:
.csslintrc
configuration file to the project root.Gruntfile.js
to callcsslint .
This runscsslint .
from the project root, regardless of the directory wheregrunt
is called from, and automatically applies the project root's.csslintrc
.But I would prefer csslint to simply work this way out-of-the-box.
The text was updated successfully, but these errors were encountered: