Skip to content

Instantly share code, notes, and snippets.

@laymont
Created June 29, 2024 19:02
Show Gist options
  • Save laymont/0dcbe65c5cac3804e210fb1d8ec97107 to your computer and use it in GitHub Desktop.
Save laymont/0dcbe65c5cac3804e210fb1d8ec97107 to your computer and use it in GitHub Desktop.
Tlint es una herramienta de linting (análisis estático) para archivos TypeScript.
{
"rules": {
"no-unused-vars": true,
"no-undef": true,
"no-redeclare": true,
"no-unreachable": true,
"no-console": true,
"no-debugger": true
},
"ignore": [
"vendor/",
"node_modules/"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment