Newer
Older
libxmljs-extra / .eslintrc.json
@dreptin dreptin on 28 Apr 2021 398 bytes Initial commit
{
  "env": {
      "browser": true,
      "commonjs": true,
      "es2021": true
  },
  "extends": [
      "airbnb-base"
  ],
  "parserOptions": {
      "ecmaVersion": 12
  },
  "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"
  }
}