mirror of
https://github.com/electron/electron.git
synced 2026-01-06 22:24:03 -05:00
36 lines
770 B
JSON
36 lines
770 B
JSON
{
|
|
"extends": "standard",
|
|
"plugins": [
|
|
"import",
|
|
"markdown"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": ["*.md", "**/*.md"],
|
|
"processor": "markdown/markdown"
|
|
}
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
"import/order": ["error", {
|
|
"alphabetize": {
|
|
"order": "asc"
|
|
},
|
|
"newlines-between": "always",
|
|
"pathGroups": [
|
|
{
|
|
"pattern": "{electron,electron/**}",
|
|
"group": "builtin",
|
|
"position": "before"
|
|
}
|
|
],
|
|
"pathGroupsExcludedImportTypes": []
|
|
}],
|
|
"n/no-callback-literal": "off",
|
|
"no-undef": "off",
|
|
"no-unused-expressions": "off",
|
|
"no-unused-vars": "off",
|
|
"import/enforce-node-protocol-usage": ["error", "always"]
|
|
}
|
|
}
|