Remove vim modelines

That's what .editorconfig is for.
This commit is contained in:
Dan Church 2023-07-20 13:39:42 -05:00
parent 98c2c04263
commit 62f2503cb0
Signed by: h3xx
GPG Key ID: EA2BF379CD2CDBD0
16 changed files with 0 additions and 16 deletions

View File

@ -1,5 +1,4 @@
package Directory::Simplify::File; package Directory::Simplify::File;
# vi: et sts=4 sw=4 ts=4
use strict; use strict;
use warnings; use warnings;
require Cwd; require Cwd;

View File

@ -1,5 +1,4 @@
package Directory::Simplify::Instruction::CopyTimestamp; package Directory::Simplify::Instruction::CopyTimestamp;
# vi: et sts=4 sw=4 ts=4
use strict; use strict;
use warnings; use warnings;
use overload '""' => 'as_string'; use overload '""' => 'as_string';

View File

@ -1,5 +1,4 @@
package Directory::Simplify::Instruction::Generator; package Directory::Simplify::Instruction::Generator;
# vi: et sts=4 sw=4 ts=4
use strict; use strict;
use warnings; use warnings;
use overload '""' => 'as_string'; use overload '""' => 'as_string';

View File

@ -1,5 +1,4 @@
package Directory::Simplify::Instruction::Hardlink; package Directory::Simplify::Instruction::Hardlink;
# vi: et sts=4 sw=4 ts=4
use strict; use strict;
use warnings; use warnings;
use overload '""' => 'as_string'; use overload '""' => 'as_string';

View File

@ -1,5 +1,4 @@
package Directory::Simplify::Utils; package Directory::Simplify::Utils;
# vi: et sts=4 sw=4 ts=4
use strict; use strict;
use warnings; use warnings;

View File

@ -1,5 +1,4 @@
#!/bin/bash #!/bin/bash
# vi: et sts=4 sw=4 ts=4
WORKDIR=${0%/*} WORKDIR=${0%/*}
OUT=$WORKDIR/simplify_static_dir.pl OUT=$WORKDIR/simplify_static_dir.pl

View File

@ -1,5 +1,4 @@
#!/usr/bin/perl #!/usr/bin/perl
# vi: et sts=4 sw=4 ts=4
package main; package main;
use strict; use strict;

View File

@ -1,5 +1,4 @@
package TestFunctions; package TestFunctions;
# vi: et sts=4 sw=4 ts=4
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,3 @@
# vi: et sts=4 sw=4 ts=4
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,3 @@
# vi: et sts=4 sw=4 ts=4
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,3 @@
# vi: et sts=4 sw=4 ts=4
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,3 @@
# vi: et sts=4 sw=4 ts=4
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,3 @@
# vi: et sts=4 sw=4 ts=4
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,3 @@
# vi: et sts=4 sw=4 ts=4
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,3 @@
# vi: et sts=4 sw=4 ts=4
use strict; use strict;
use warnings; use warnings;

View File

@ -1,5 +1,4 @@
#!/usr/bin/perl #!/usr/bin/perl
# vi: et sts=4 sw=4 ts=4
# Squashes together the parts of the app into the single script. # Squashes together the parts of the app into the single script.
# (Adapted from the script that squashes App::Ack - see https://github.com/beyondgrep/ack3) # (Adapted from the script that squashes App::Ack - see https://github.com/beyondgrep/ack3)