mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-04 04:51:16 +08:00
19 lines
407 B
JSON
19 lines
407 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true,
|
|
"node": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"ecmaVersion": 12,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"indent": ["error", 2],
|
|
"linebreak-style": ["error", "unix"],
|
|
"quotes": ["error", "double"],
|
|
"semi": ["error", "always"],
|
|
"no-unused-vars": ["error", { "argsIgnorePattern": "^_" }]
|
|
}
|
|
}
|