Skip to content
Snippets Groups Projects
.eslintrc 310 B
Newer Older
  • Learn to ignore specific revisions
  • winniehell's avatar
    winniehell committed
    {
    
        "jquery": true,
    
        "browser": true,
        "es6": true
      },
    
      "extends": "airbnb-base",
    
    winniehell's avatar
    winniehell committed
      "globals": {
        "_": false,
        "gl": false,
    
        "gon": false,
        "localStorage": false
    
    Mike Greiling's avatar
    Mike Greiling committed
      },
      "plugins": [
        "filenames"
      ],
      "rules": {
        "filenames/match-regex": [2, "^[a-z0-9_]+(.js)?$"]
    
    winniehell's avatar
    winniehell committed
      }
    }