Skip to content

Instantly share code, notes, and snippets.

@sophieelsa
Created December 21, 2020 17:33
Show Gist options
  • Save sophieelsa/438db996a22914e93712cdce068dd314 to your computer and use it in GitHub Desktop.
Save sophieelsa/438db996a22914e93712cdce068dd314 to your computer and use it in GitHub Desktop.
{
"rules": {
"indent": ["error", 2],
"no-multi-spaces": "error",
"space-in-parens": ["error", "never"],
"no-multiple-empty-lines": "error",
"prefer-const": "error",
"no-use-before-define": "error",
"no-console": "error",
"no-unused-vars": ["error", { "vars": "all", "args": "after-used", "ignoreRestSiblings": false }],
"@typescript-eslint/prefer-readonly": ["error", { "onlyInlineLambdas": true }]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment