add eslint config (#4457)

This commit is contained in:
ParkTandem 2021-11-02 20:01:06 -04:00 committed by GitHub
parent b095d9b82f
commit 5e3a524401
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 19847 additions and 458 deletions

9
webclient/.eslintrc.json Normal file
View file

@ -0,0 +1,9 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": { "project": [ "./tsconfig.json" ] },
"plugins": [
"@typescript-eslint"
],
"ignorePatterns": [ "node_modules/*", "build/*", "public/pb/*" ]
}