umberto 3.1.0 → 3.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.eslintrc.js DELETED
@@ -1,41 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2017-2023, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md.
4
- */
5
-
6
- 'use strict';
7
-
8
- module.exports = {
9
- extends: 'ckeditor5',
10
- rules: {
11
- 'ckeditor5-rules/license-header': [ 'error', { headerLines: [
12
- '/**',
13
- ' * @license Copyright (c) 2017-2023, CKSource Holding sp. z o.o. All rights reserved.',
14
- ' * For licensing, see LICENSE.md.',
15
- ' */'
16
- ] } ]
17
- },
18
- env: {
19
- node: true
20
- },
21
- ignorePatterns: [
22
- 'source/**/*.js',
23
- 'temp/**/*.js',
24
- 'themes/umberto/source/**/*.js',
25
- 'tests/src/data-converter/converters/typedoc/fixtures'
26
- ],
27
- overrides: [
28
- {
29
- files: [ 'scripts/**/*.js' ],
30
- globals: {
31
- hexo: true
32
- }
33
- },
34
- {
35
- files: [ 'themes/**/*.js' ],
36
- env: {
37
- browser: true
38
- }
39
- }
40
- ]
41
- };
@@ -1,18 +0,0 @@
1
- /**
2
- * @license Copyright (c) 2017-2023, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md.
4
- */
5
-
6
- 'use strict';
7
-
8
- /* eslint-env node */
9
-
10
- const path = require( 'path' );
11
- const fs = require( 'fs' );
12
- const ROOT_DIRECTORY = path.join( __dirname, '..' );
13
-
14
- // When installing a repository as a dependency, the `.git` directory does not exist.
15
- // In such a case, husky should not attach its hooks as npm treats it as a package, not a git repository.
16
- if ( fs.existsSync( path.join( ROOT_DIRECTORY, '.git' ) ) ) {
17
- require( 'husky' ).install();
18
- }
@@ -1,5 +0,0 @@
1
- include ../_mixin/_type
2
-
3
- div(class="types hidden-loading")
4
- if isNonEmptyArray( data.types )
5
- +type( data.types )