Pon task for lint – A task definition module for the Pon task runner that provides linting functionality. Version 1.1.0 is the current stable release. It allows users to define tasks that run linting against specified file patterns. The package is minimal and designed to integrate seamlessly with Pon. Compared to other lint runners, it is tightly coupled with the Pon ecosystem and may not have broad standalone use.
npm install pon-task-lintNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to create a Pon task that uses pon-task-lint to lint JavaScript files matching the pattern.
Use within a Pon task runner context.
Use require() or dynamic import with proper defaults.
Use default import: const ponTaskLint = require('pon-task-lint')Evaluate if maintenance is needed or switch to a more active lint runner.
Use const ponTaskLint = require('pon-task-lint')Ensure you call ponTaskLint with options object: ponTaskLint({ patterns: [...] })Run 'npm install pon-task-lint --save'