0.1.0 • Published 6 years ago
@buurman-feature-detectors/lint-staged
Licence
SEE LICENSE IN LICENSE.md
Version
0.1.0
Deps
2
Size
13 kB
Vulns
0
Weekly
0
@buurman-feature-detectors/lint-staged
Detects if lint-staged is installed to this current project.
Installing
npm i @buurman-feature-detectors/lint-staged
Usage
import isLintStagedInstalled from "@buurman-feature-detectors/lint-staged";
isLintStagedInstalled().then(installed => {
if (installed) {
return;
}
console.log("lint-staged is not installed");
});