mirror of
https://github.com/georgemandis/bubo-rss.git
synced 2024-11-05 04:04:23 +00:00
c9e98d79b6
Converting to TypeScript!
50 lines
992 B
JSON
50 lines
992 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"rules": {
|
|
"indent": [
|
|
"error",
|
|
2
|
|
],
|
|
"linebreak-style": [
|
|
"error",
|
|
"unix"
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"double"
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"no-trailing-spaces": [
|
|
2,
|
|
{
|
|
"skipBlankLines": false
|
|
}
|
|
],
|
|
"no-multiple-empty-lines": [
|
|
"error",
|
|
{
|
|
"max": 2,
|
|
"maxEOF": 1
|
|
}
|
|
],
|
|
"@typescript-eslint/no-var-requires": 0
|
|
}
|
|
} |