| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- {
- "indentation": {
- "level": "error",
- "value": 4
- },
- "no_tabs": {
- "level": "error"
- },
- "no_trailing_whitespace": {
- "level": "error",
- "allowed_in_comments": false,
- "allowed_in_empty_lines": false
- },
- "max_line_length": {
- "level": "warn",
- "value": 100,
- "limitComments": true
- },
- "line_endings": {
- "level": "ignore",
- "value": "unix"
- },
- "camel_case_classes": {
- "level": "error"
- },
- "no_implicit_braces": {
- "level": "ignore",
- "strict": true
- },
- "no_plusplus": {
- "level": "ignore"
- },
- "no_throwing_strings": {
- "level": "error"
- },
- "no_interpolation_in_single_quotes": {
- "level": "error"
- },
- "cyclomatic_complexity": {
- "level": "ignore",
- "value": 10
- },
- "newlines_after_classes": {
- "level": "warn",
- "value": 2
- },
- "duplicate_key": {
- "level": "error"
- },
- "empty_constructor_needs_parens": {
- "level": "ignore"
- },
- "non_empty_constructor_needs_parens": {
- "level": "ignore"
- },
- "missing_fat_arrows": {
- "level": "ignore",
- "is_strict": false
- },
- "space_operators": {
- "level": "warn"
- },
- "eol_last": {
- "level": "ignore"
- }
- }
|