eslint-config-atomic
Version:
Eslint config used in atom-ide-community
18 lines (17 loc) • 388 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.jsonConfig = void 0;
exports.jsonConfig = {
// JSON files
files: ["*.json"],
plugins: ["json"],
extends: ["plugin:json/recommended", "prettier"],
rules: {
"json/*": [
"error",
{
allowComments: true,
},
],
},
};