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;
# vi: et sts=4 sw=4 ts=4
use strict;
use warnings;
require Cwd;

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,5 +1,4 @@
#!/usr/bin/perl
# vi: et sts=4 sw=4 ts=4
# 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)