-
Notifications
You must be signed in to change notification settings - Fork 12
/
EngineQuailConfig.js
40 lines (36 loc) · 1006 Bytes
/
EngineQuailConfig.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
* @license Copyright (c) 2014-2022, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/license
*/
define( function() {
'use strict';
function EngineQuailConfig() {
}
EngineQuailConfig.prototype = {
guideline: [
'aAdjacentWithSameResourceShouldBeCombined',
'aImgAltNotRepetitive',
'aLinksAreSeparatedByPrintableCharacters',
'aMustNotHaveJavascriptHref',
'aSuspiciousLinkText',
'blockquoteNotUsedForIndentation',
'documentVisualListsAreMarkedUp',
'headerH1',
'headerH2',
'headerH3',
'headerH4',
'imgAltIsDifferent',
'imgAltIsTooLong',
'imgAltNotEmptyInAnchor',
'imgAltTextNotRedundant',
'imgHasAlt',
'imgShouldNotHaveTitle',
'pNotUsedAsHeader',
'tableDataShouldHaveTh',
'imgWithEmptyAlt'
]
};
// This module should return a default config for EngineQuail. It's exported to a separate module, so that it can
// be replaced in building time.
return EngineQuailConfig;
} );