https://github.com/facundoolano/google-play-scraper
Raw File
Tip revision: 8750dfc609a44afccd74673d6d29332f36c56422 authored by Facundo Olano on 14 December 2015, 13:34:05 UTC
Merge pull request #56 from facundoolano/dev
Tip revision: 8750dfc
.eslintrc
{
  "env": {
    "node": true
  },
  "rules": {
    "block-scoped-var": 2,
    "brace-style": [2, "1tbs"],
    "camelcase": 1,
    "curly": 2,
    "eol-last": 2,
    "eqeqeq": [2, "smart"],
    "max-depth": [1, 3],
    "max-statements": [1, 15],
    "max-len": [1, 80],
    "new-cap": 1,
    "no-extend-native": 2,
    "no-mixed-spaces-and-tabs": 2,
    "no-trailing-spaces": 2,
    "no-use-before-define": [2, "nofunc"],
    "no-unused-vars": 1,
    "quotes": [2, "single", "avoid-escape"],
    "semi": [2, "always"],
    "space-after-keywords": [2, "always"],
    "space-in-brackets": [2, "never"],
    "space-unary-ops": 2,
    "strict": [2, "never"]
  }
}
back to top