https://github.com/facundoolano/google-play-scraper
Raw File
Tip revision: c8db7f21f4084bfc16b28457fc63c5e8f06c8525 authored by Facundo Olano on 26 November 2015, 12:57:20 UTC
Merge pull request #50 from facundoolano/dev
Tip revision: c8db7f2
.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