UNPKG

@acuris/eslint-config

Version:
18 lines (15 loc) 396 B
'use strict' const eslintSupport = require('../core/eslint-support') if (eslintSupport.hasEslintPluginJson && eslintSupport.projectConfig.jsonExtensions.length) { module.exports = { overrides: [ { files: eslintSupport.projectConfig.filePatterns.json, plugins: ['json'], rules: { 'json/*': [2, { allowComments: true }] } } ] } }