Newer
Older
libxmljs-extra / .eslintrc.json
{
  "env": {
      "browser": true,
      "commonjs": true,
      "es2021": true
  },
  "extends": [
      "airbnb-base"
  ],
  "parser": "@babel/eslint-parser",
  "parserOptions": {
      "ecmaVersion": 12,
      "babelOptions": {
        "configFile": "./.babelrc"
      }
  },
  "rules": {
    "no-underscore-dangle": "off",
    "no-param-reassign": "off",
    "no-plusplus": "off",
    "max-len": ["warn", { "code": 120 }],
    "import/extensions": ["off"],
    "no-use-before-define": "off"
  },
  "plugins": ["@babel"]
}