This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
fediverse-imagebot/.eslintrc.json
Sam Therapy 153ba14fab
All checks were successful
continuous-integration/drone/push Build is passing
Booru support (#1)
- Convert to yarn v2 with zero installs
- Refactor much of app to use config instead of flags

Co-authored-by: Sam Therapy <sam@samtherapy.net>
Reviewed-on: Sam/fediverse-imagebot#1
2022-03-15 19:13:35 +00:00

25 lines
563 B
JSON

{
"env": {
"browser": true,
"es2021": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "prettier"],
"rules": {
"linebreak-style": ["error", "unix"],
"quotes": ["error", "double"],
"semi": ["error", "always"],
"prettier/prettier": ["error", { "singleQuote": false }]
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
]
}