Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
48 additions
and 2 deletions.
- +4 −1 Makefile
- +42 −0 lint.config.json
- +2 −1 package.json
@@ -0,0 +1,42 @@ | ||
{ | ||
"no_tabs": { | ||
"level": "ignore" | ||
}, | ||
"no_trailing_whitespace": { | ||
"level": "error" | ||
}, | ||
"max_line_length": { | ||
"value": 80, | ||
"level": "error" | ||
}, | ||
"camel_case_classes": { | ||
"level": "error" | ||
}, | ||
"indentation": { | ||
"value": 1, | ||
"level": "error" | ||
}, | ||
"no_implicit_braces": { | ||
"level": "ignore" | ||
}, | ||
"no_trailing_semicolons": { | ||
"level": "error" | ||
}, | ||
"no_plusplus": { | ||
"level": "ignore" | ||
}, | ||
"no_throwing_strings": { | ||
"level": "error" | ||
}, | ||
"cyclomatic_complexity": { | ||
"value": 11, | ||
"level": "ignore" | ||
}, | ||
"line_endings": { | ||
"value": "unix", | ||
"level": "ignore" | ||
}, | ||
"no_implicit_parens": { | ||
"level": "ignore" | ||
} | ||
} |