~ubuntu-branches/ubuntu/wily/phabricator/wily

« back to all changes in this revision

Viewing changes to resources/arclint/cornucopia.arclint.example

  • Committer: Package Import Robot
  • Author(s): Richard Sellam
  • Date: 2014-11-01 23:20:06 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: package-import@ubuntu.com-20141101232006-mvlnp0cil67tsboe
Tags: upstream-0~git20141101/arcanist
Import upstream version 0~git20141101, component arcanist

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{
 
2
  "linters": {
 
3
    "pep8": {
 
4
      "type": "pep8",
 
5
      "include": "(\\.py$)",
 
6
      "exclude": "(^exclude.py)",
 
7
      "severity": {
 
8
        "E401": "warning"
 
9
      }
 
10
    },
 
11
    "flake8": {
 
12
      "type": "flake8",
 
13
      "include": "(\\.py$)",
 
14
      "exclude": "(^exclude\\.py)",
 
15
      "severity": {
 
16
        "E901": "advice"
 
17
      }
 
18
    },
 
19
    "csslint": {
 
20
      "type": "csslint",
 
21
      "include": "(\\.css$)"
 
22
    },
 
23
    "text": {
 
24
      "type": "text",
 
25
      "include": "(\\.txt$)"
 
26
    },
 
27
    "ruby": {
 
28
      "type": "ruby",
 
29
      "include": "(\\.rb$)"
 
30
    },
 
31
    "filename": {
 
32
      "type": "filename"
 
33
    },
 
34
    "spelling": {
 
35
      "type": "spelling"
 
36
    },
 
37
    "nolint": {
 
38
      "type": "nolint"
 
39
    },
 
40
    "generated": {
 
41
      "type": "generated"
 
42
    },
 
43
    "phpcs": {
 
44
      "type": "phpcs",
 
45
      "include": "(\\.php)",
 
46
      "severity.rules": {
 
47
        "(^PHPCS\\.E\\.)": "warning",
 
48
        "(^PHPCS\\.W\\.)": "advice"
 
49
      }
 
50
    }
 
51
  }
 
52
}