Skip to content

Instantly share code, notes, and snippets.

@d4be4st
Last active August 29, 2015 14:16
Show Gist options
  • Select an option

  • Save d4be4st/9fb9f77efc7988fbe82f to your computer and use it in GitHub Desktop.

Select an option

Save d4be4st/9fb9f77efc7988fbe82f to your computer and use it in GitHub Desktop.

Revisions

  1. d4be4st revised this gist Feb 25, 2015. 1 changed file with 24 additions and 0 deletions.
    24 changes: 24 additions & 0 deletions .rubocop.yml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,24 @@
    LineLength:
    Max: 120

    Documentation:
    Enabled: False

    NegatedIf:
    Enabled: False

    SignalException:
    Enabled: False

    RedundantBegin:
    Enabled: False

    NumericLiterals:
    Enabled: False

    StringLiterals:
    Enabled: False

    WordArray:
    Enabled: False

  2. d4be4st created this gist Feb 25, 2015.
    67 changes: 67 additions & 0 deletions linter settings
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,67 @@
    {
    "user": {
    "debug": true,
    "delay": 0.25,
    "error_color": "D02000",
    "gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme",
    "gutter_theme_excludes": [],
    "lint_mode": "background",
    "linters": {
    "apiblueprint": {
    "@disable": false,
    "args": [],
    "excludes": []
    },
    "hamllint": {
    "@disable": false,
    "args": [
    "--config=/Users/stef/.haml_lint.yml"
    ],
    "excludes": []
    },
    "jshint": {
    "@disable": false,
    "args": [],
    "excludes": []
    },
    "rubocop": {
    "@disable": false,
    "args": [
    "-R", # add extra Rails cops
    "-D" # add copnames to error messages
    ],
    "excludes": []
    }
    },
    "mark_style": "outline",
    "no_column_highlights_line": false,
    "passive_warnings": false,
    "paths": {
    "linux": [],
    "osx": [
    "/Users/stef/.rbenv/shims",
    "/Users/stef/.rbenv/bin",
    "/usr/local/share/npm/bin/"
    ],
    "windows": []
    },
    "python_paths": {
    "linux": [],
    "osx": [],
    "windows": []
    },
    "rc_search_limit": 3,
    "shell_timeout": 10,
    "show_errors_on_save": false,
    "show_marks_in_minimap": true,
    "syntax_map": {
    "html (django)": "html",
    "html (rails)": "html",
    "html 5": "html",
    "php": "html",
    "python django": "python"
    },
    "warning_color": "DDB700",
    "wrap_find": true
    }
    }