Skip to content

Instantly share code, notes, and snippets.

@cryptoquick
Created April 25, 2020 00:07
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 cryptoquick/32b2400838609c918a27aa6beb07b874 to your computer and use it in GitHub Desktop.
Save cryptoquick/32b2400838609c918a27aa6beb07b874 to your computer and use it in GitHub Desktop.
preferred linter config (prettier for typescript + lint script)
{
"bracketSpacing": true,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always",
"tabWidth": 2,
"useTabs": false
}
{
"scripts": {
"lint": "prettier --parser typescript --check \"src/**/*.{ts,tsx}\"",
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment