Skip to content

Commit fabe7ae

Browse files
committed
Remove references to tidyall
1 parent 89f353a commit fabe7ae

File tree

5 files changed

+5
-18
lines changed

5 files changed

+5
-18
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ RUN \
120120
cpm install --show-build-log-on-failure --with-test
121121
EOT
122122

123-
COPY .perlcriticrc .perltidyrc perlimports.toml tidyall.ini ./
123+
COPY .perlcriticrc .perltidyrc perlimports.toml ./
124124
COPY t t
125125

126126
USER metacpan

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ You will want to set up the supplied pre-commit Git hook like so:
7171

7272
./git/setup.sh
7373

74-
which causes `tidyall` to be run before each commit. You can manually run this with
75-
`tidyall path/to/file`
74+
which causes `precious` to be run before each commit. You can manually run this with
75+
`precious path/to/file`
7676

7777
## Local Configuration Changes
7878

cpanfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,6 @@ requires 'XML::FeedPP';
9393
# Test dependencies
9494
requires 'aliased', '0.34';
9595
requires 'App::Prove';
96-
requires 'Code::TidyAll', '>= 0.74';
97-
requires 'Code::TidyAll::Plugin::Test::Vars', '0.04';
9896
requires 'Perl::Critic', '1.136';
9997
requires 'Perl::Tidy' => '20230909';
10098
requires 'Test::Code::TidyAll';

git/hooks/pre-commit

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
#!/usr/bin/env perl
1+
#!/usr/bin/env bash
22

3-
use strict;
4-
use warnings;
5-
6-
# Hack to use carton's local::lib.
7-
use lib 'local/lib/perl5';
8-
9-
use Code::TidyAll::Git::Precommit ();
10-
Code::TidyAll::Git::Precommit->check(
11-
no_stash => 1,
12-
tidyall_options => { verbose => $ENV{TIDYALL_VERBOSE} // 0 },
13-
);
3+
precious lint -s

t/testrules.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
---
22
seq:
3-
- seq: t/tidyall.t
43
- par:
54
- t/**.t

0 commit comments

Comments
 (0)