|
@@ -4,13 +4,17 @@
|
|
|
"rules": {
|
|
|
"code-complexity": ["error", 7],
|
|
|
"compiler-version": ["error", "^0.7.2"],
|
|
|
+ "const-name-snakecase": "off",
|
|
|
"constructor-syntax": "error",
|
|
|
"func-visibility": ["error", { "ignoreConstructors": true }],
|
|
|
"max-line-length": ["error", 120],
|
|
|
"not-rely-on-time": "off",
|
|
|
- "prettier/prettier": ["error", {
|
|
|
- "endOfLine":"auto"
|
|
|
- }],
|
|
|
+ "prettier/prettier": [
|
|
|
+ "error",
|
|
|
+ {
|
|
|
+ "endOfLine": "auto"
|
|
|
+ }
|
|
|
+ ],
|
|
|
"reason-string": ["warn", { "maxLength": 64 }]
|
|
|
}
|
|
|
}
|