d2-ui
Version:
18 lines (16 loc) • 681 B
Plain Text
{
"rules": { //Rules that are specific to dhis2 projects that differ from the AirBnB guide
// General rules
"indent": [2, 4], //Use 4 spaced indentation instead of 2
"max-len": [1, 120, 4, {"ignoreComments": true, "ignoreUrls": true, "ignorePattern": "^\\s*var\\s.+=\\s*require\\s*\\("}],
"complexity": [1, 5], // Cyclomatic complexity
// React Rules
"react/jsx-indent-props": [2, 4], // Use 4 spaces for props indentation
"react/prefer-es6-class": [1, "always"], // Prefer ES6 classes but don't hard require them yet
"react/jsx-no-bind": [1, {
"ignoreRefs": false,
"allowArrowFunctions": false,
"allowBind": false
}]
}
}