eslint-config-wikimedia
Version:
ESLint config following Wikimedia code conventions.
24 lines (23 loc) • 523 B
JSON
{
"extends": [ "plugin:n/recommended" ],
"rules": {
"strict": [ "error", "safe" ],
"n/no-extraneous-import": "off",
"n/no-extraneous-require": "off",
"n/no-unpublished-import": "off",
"n/no-unpublished-require": "off",
"n/no-unsupported-features/es-builtins": "off",
"n/no-unsupported-features/es-syntax": "off",
"n/hashbang": "off"
},
"overrides": [
{
"files": [ "**/*.json", "**/*.jsonc" ],
"extends": "./json"
},
{
"files": [ "**/*.yaml", "**/*.yml" ],
"extends": "./yaml"
}
]
}