Skip to content

Commit

Permalink
(cake-buildGH-475) added eslint to the project
Browse files Browse the repository at this point in the history
using a standard configuration,
which probably should be tailored a bit.
  • Loading branch information
nils-a committed Nov 30, 2020
1 parent 2da55a8 commit 5cdfdd1
Show file tree
Hide file tree
Showing 3 changed files with 760 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
}
}
Loading

0 comments on commit 5cdfdd1

Please sign in to comment.