https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 684e6751cff6b54c3fc28567f7e24f8e369a6e23 authored by gildas on 21 March 2017, 13:54:51 UTC
6.4.0
Tip revision: 684e675
.eslintrc
{
    "parser": "babel-eslint",
    "env": {
        "browser": true,
        "mocha": true,
        "node": true
    },
    "extends": "airbnb",
    "rules": {
        "indent": ["error", 4],
        "max-len": ["error", {"code": 120, "tabWidth": 4, "ignoreUrls": true}],
        "no-underscore-dangle": ["error", { "allow": ["_id"] }],
        "import/no-extraneous-dependencies": "off",
        "no-param-reassign": ["error", { "props": false }]
    }
}
back to top