userscripts/.eslintrc.json

16 lines
261 B
JSON
Raw Normal View History

2023-06-01 16:55:54 +02:00
{
"env": {
"browser": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2021
},
"rules": {
"quotes": ["warn", "double"],
"semi": ["warn", "never"],
"indent": ["warn", 4],
"prettier/prettier": 0
}
}