voxa-ama
Version: 
Integrate Amazon Mobile Analytics analytics into your Alexa apps using the voxa framework
33 lines (32 loc) • 715 B
JSON
{
  "extends": "airbnb-base",
  "parserOptions": {
    "sourceType": "script"
  },
  "installedESLint": true,
  "ecmaFeatures": {
    "impliedStrict": false
  },
  "plugins": [
    "import"
    ],
    "rules": {
      "no-multi-assign": "warn",
      "max-len": "warn",
      "no-console": "off",
      "no-unused-expressions": "off",
      "no-use-before-define": "off",
      "no-param-reassign": "off",
      "import/no-extraneous-dependencies": "off",
      "global-require": "off",
      "import/no-dynamic-require": "off",
      "no-unused-vars": "warn",
      "consistent-return": "off",
      "comma-dangle": "off"
    },
    "env": {
      "browser": false,
      "node": true,
      "mocha": true
    }
}