Perl-Critic-Policy-CodeLayout-TabIndentSpaceAlign Hard tabs are a perfectly fine way to indent code for accessibility and usability purposes, allowing different users to tweak indentation settings to suit their needs and habits. However, hard tabs should not be used for formatting / aligning, as this makes the display dependent on the tab-to-space ratio of the user. Perl::Critic::Policy::CodeLayout::ProhibitHardTabs has a setting that allows leading tabs, but this not not fully represent the paradigm where tabs are reserved for indenting and spaces for formatting/aligning. In particular, it does not prevent indenting with spaces, while this module detects and prevents it. INSTALLATION To install this module, run the following commands: perl Build.PL ./Build ./Build test ./Build install SUPPORT AND DOCUMENTATION After installing, you can find documentation for this module with the perldoc command. perldoc Perl::Critic::Policy::CodeLayout::TabIndentSpaceAlign You can also look for information at: RT, CPAN's request tracker (report bugs here) http://rt.cpan.org/NoAuth/Bugs.html?Dist=Perl-Critic-Policy-CodeLayout-TabIndentSpaceAlign AnnoCPAN, Annotated CPAN documentation http://annocpan.org/dist/Perl-Critic-Policy-CodeLayout-TabIndentSpaceAlign CPAN Ratings http://cpanratings.perl.org/d/Perl-Critic-Policy-CodeLayout-TabIndentSpaceAlign Search CPAN http://search.cpan.org/dist/Perl-Critic-Policy-CodeLayout-TabIndentSpaceAlign/ LICENSE AND COPYRIGHT Copyright (C) 2012 Guillaume Aubert This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License. See http://dev.perl.org/licenses/ for more information.