MapDownload-24.12.5-587/.eslintrc.json

44 lines
774 B
JSON
Raw Normal View History

2025-07-18 11:39:25 +08:00
{
"root": true,
"env": {
"es2021": true,
"node": true,
"browser": false
},
"extends": [
"eslint:recommended"
],
"parserOptions": {
"sourceType": "module"
},
"ignorePatterns": [
"node_modules/**",
"**/dist/**"
],
"rules": {
/**
* Having a semicolon helps the optimizer interpret your code correctly.
* This avoids rare errors in optimized code.
* @see https://twitter.com/alex_kozack/status/1364210394328408066
*/
"semi": [
"error",
"always"
],
/**
* This will make the history of changes in the hit a little cleaner
*/
"comma-dangle": [
"warn",
"always-multiline"
],
/**
* Just for beauty
*/
"quotes": [
"warn", "single"
]
}
}