Skip to content

Instantly share code, notes, and snippets.

@MatthewCallis
Created May 1, 2021 19:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MatthewCallis/cd98168fbf0a68ffcef20a359a5437da to your computer and use it in GitHub Desktop.
Save MatthewCallis/cd98168fbf0a68ffcef20a359a5437da to your computer and use it in GitHub Desktop.
ESLint Setup
{
"extends": [
"airbnb",
"plugin:ava/recommended",
"plugin:jsdoc/recommended",
"plugin:node/recommended",
"plugin:optimize-regex/all",
"plugin:ramda/recommended",
"plugin:security/recommended",
"plugin:unicorn/recommended"
],
"plugins": [
"ava",
"jsdoc",
"no-inferred-method-name",
"node",
"optimize-regex",
"ramda",
"security",
"unicorn",
"xss"
],
"env": {
"es6": true,
"browser": true,
"mocha": true
},
"globals": {
"sinon": false,
"mocha": true,
"expect": true
},
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"import/no-extraneous-dependencies": [
"error", {
"devDependencies": ["**/*.test.js", "**/test/**/*.js"],
"optionalDependencies": true,
"peerDependencies": false
}
],
"ava/no-only-test": 0,
"camelcase": 0,
"class-methods-use-this": 0,
"consistent-return": ["warn", { "treatUndefinedAsUnspecified": false }],
"global-require": 0,
"import/no-dynamic-require": 0,
"max-classes-per-file": 0,
"max-len": 0,
"no-bitwise": 0,
"no-empty": ["error", { "allowEmptyCatch": true }],
"no-inferred-method-name/no-inferred-method-name": "error",
"no-param-reassign": 0,
"no-plusplus": 0,
"no-restricted-syntax": 0,
"no-underscore-dangle": 0,
"no-unused-vars": ["error", { "varsIgnorePattern": "^_", "argsIgnorePattern": "^_", "caughtErrors": "none" }],
"node/no-unpublished-require": 0,
"object-curly-newline": 0,
"optimize-regex/optimize-regex": "warn",
"security/detect-non-literal-fs-filename": 0,
"security/detect-non-literal-require": 0,
"security/detect-object-injection": 0,
"unicorn/catch-error-name": 0,
"unicorn/filename-case": 0,
"unicorn/no-for-loop": 0,
"unicorn/no-fn-reference-in-iterator": 0,
"unicorn/no-null": 0,
"unicorn/no-reduce": 0,
"unicorn/no-useless-undefined": 0,
"unicorn/prevent-abbreviations": 0
}
}
{
"engines": {
"node": ">= 14"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-ava": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^33.0.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-no-inferred-method-name": "^2.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-optimize-regex": "^1.2.0",
"eslint-plugin-ramda": "^2.5.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-unicorn": "^31.0.0",
"eslint-plugin-xss": "^0.1.10",
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment