mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-18 04:51:29 +00:00
7 lines
175 B
JavaScript
7 lines
175 B
JavaScript
|
/*jshint node:true */
|
||
|
var fs = require( 'fs' ),
|
||
|
config = JSON.parse( fs.readFileSync( __dirname + '/../.jscsrc' ) );
|
||
|
|
||
|
delete config.jsDoc;
|
||
|
|
||
|
module.exports = exports = config;
|