cksource/mgit2

View on GitHub
.eslintrc.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
 * For licensing, see LICENSE.md.
 */

/* eslint-env node */

'use strict';

module.exports = {
    extends: 'ckeditor5',
    env: {
        node: true
    },
    rules: {
        'no-console': 'off',
        'ckeditor5-rules/license-header': [ 'error', { headerLines: [
            '/**',
            ' * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.',
            ' * For licensing, see LICENSE.md.',
            ' */'
        ] } ]
    }
};