.eslitrc.json: Added support for airbnb-base linting

This commit is contained in:
Michael Frank 2021-05-10 19:03:38 +12:00
parent 435c1d3779
commit 276b60a3c3
1 changed files with 12 additions and 0 deletions

12
.eslintrc.json Normal file
View File

@ -0,0 +1,12 @@
{
"extends": "airbnb-base",
"plugins": [
"import"
],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"rules": {
}
}