Skip to content

Instantly share code, notes, and snippets.

@gcmatheusj
Created August 6, 2020 14:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gcmatheusj/ddb78029ee37bfa5d602825749289c68 to your computer and use it in GitHub Desktop.
Save gcmatheusj/ddb78029ee37bfa5d602825749289c68 to your computer and use it in GitHub Desktop.
{
"env": {
"es6": true,
"node": true,
"jest": true
},
"extends": [
"airbnb-base",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"prettier"
],
"rules": {
"prettier/prettier": "error",
"class-methods-use-this": "off",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/no-unused-vars": ["error", {
"argsIgnorePattern": "_"
}],
"no-param-reassign": "off",
"no-useless-constructor": "off",
"@typescript-eslint/interface-name-prefix": ["error", { "prefixWithI": "always" }],
"import/extensions": [
"error",
"ignorePackages",
{
"ts": "never"
}
]
},
"settings": {
"import/resolver": {
"typescript": {}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment