screep/.eslintrc.json

23 lines
391 B
JSON
Raw Normal View History

2020-10-26 16:15:52 +08:00
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": [
"airbnb-base",
"prettier"
],
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
"prettier/prettier": ["error",{
2020-10-26 16:45:02 +08:00
"endOfLine":"auto",
"tabWidth":4
2020-10-26 16:15:52 +08:00
}]
},
"plugins": [
"prettier"
]
}