mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-19 21:00:26 +08:00
22 lines
348 B
JSON
22 lines
348 B
JSON
{
|
|
"root": true,
|
|
"extends": ["sukka/node"],
|
|
"ignorePatterns": [
|
|
"node_modules/",
|
|
// disable for now
|
|
"**/*.d.ts"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": ["**/*.js"],
|
|
"rules": {
|
|
"no-console": "off"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module"
|
|
}
|
|
}
|
|
]
|
|
}
|