This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-12-01 12:59:59 +00:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"es2021": true
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
2020-12-02 14:44:40 +00:00
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
"plugin:lit/recommended"
|
2020-12-01 12:59:59 +00:00
|
|
|
],
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 12,
|
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"plugins": [
|
2020-12-02 14:44:40 +00:00
|
|
|
"@typescript-eslint",
|
|
|
|
"lit"
|
2020-12-01 12:59:59 +00:00
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"indent": ["error", 4],
|
|
|
|
"linebreak-style": ["error", "unix"],
|
|
|
|
"quotes": ["error", "double"],
|
|
|
|
"semi": ["error", "always"],
|
|
|
|
"@typescript-eslint/ban-ts-comment": "off"
|
|
|
|
}
|
|
|
|
}
|