Skip to content

Instantly share code, notes, and snippets.

@didyhu
Created February 20, 2020 03:32
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 didyhu/abc7b4471546c8f4bff75ef81133af27 to your computer and use it in GitHub Desktop.
Save didyhu/abc7b4471546c8f4bff75ef81133af27 to your computer and use it in GitHub Desktop.
{
"env": {
"es6": true,
"node": true
},
"extends": [
"standard",
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"comma-dangle": [
"warn",
"always-multiline"
],
"indent": [
"warn",
2
],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error"
],
"quotes": [
"error",
"double"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment