This file is indexed.

/usr/lib/nodejs/acorn/src/.eslintrc is in node-acorn 5.4.1+ds1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
32
33
{
    "extends": [
        "eslint:recommended",
        "standard",
        "plugin:import/errors",
        "plugin:import/warnings"
    ],
    "rules": {
        "curly": "off",
        "eqeqeq": "off",
        "indent": ["error", 2, { "SwitchCase": 0, "VariableDeclarator": 2, "CallExpression": { arguments: "off" } }],
        "new-parens": "off",
        "no-case-declarations": "off",
        "no-cond-assign": "off",
        "no-fallthrough": "off",
        "no-labels": "off",
        "no-mixed-operators": "off",
        "no-return-assign": "off",
        "no-unused-labels": "error",
        "no-var": "error",
        "object-curly-spacing": ["error", "never"],
        "one-var": "off",
        "quotes": ["error", "double"],
        "semi-spacing": "off",
        "space-before-function-paren": ["error", "never"]
    },
    "globals": {
        "Packages": false
    },
    "plugins": [
        "import"
    ]
}