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 91a95e96f5
Add basic stuffs
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-01-03 17:02:06 -06:00

30 lines
397 B
JSON

{
"env": {
"browser": true,
"es2021": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 13,
"sourceType": "module"
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
]
}
}