userscripts/.eslintrc.json

17 lines
324 B
JSON
Raw Permalink 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", 2],
"prettier/prettier": 0,
"no-unused-vars": ["warn", { "argsIgnorePAttern": "^_" }]
2023-06-01 16:55:54 +02:00
}
}