File: ScanPatterns.pl

package info (click to toggle)
libconfig-model-dpkg-perl 3.017
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,048 kB
  • sloc: perl: 8,530; python: 242; makefile: 77; javascript: 16; sh: 1
file content (31 lines) | stat: -rw-r--r-- 906 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
use strict;
use warnings;

return [
  {
    'element' => [
      'check',
      {
        'config_class_name' => 'Dpkg::Copyright::ScanPatterns::Lists',
        'description' => 'Files matching any of these patterns will be scanned by L<licensecheck>. See L<Dpkg::Copyright::Scanner/"electing or ignoring files to scan">',
        'type' => 'node'
      },
      'ignore',
      {
        'config_class_name' => 'Dpkg::Copyright::ScanPatterns::Lists',
        'description' => 'Files matching any of these patterns will be ignored by L<licensecheck>. See L<Dpkg::Copyright::Scanner/"electing or ignoring files to scan">',
        'type' => 'node'
      }
    ],
    'name' => 'Dpkg::Copyright::ScanPatterns',
    'rw_config' => {
      'auto_create' => '1',
      'auto_delete' => '1',
      'backend' => 'Yaml',
      'config_dir' => 'debian',
      'file' => 'copyright-scan-patterns.yml'
    }
  }
]
;