Skip to content

Commit 040ac21

Browse files
author
nod_
committed
Issue #3512429 by alexpott: Add words used in config schema into Drupal dictionary
1 parent 18114d7 commit 040ac21

27 files changed

+4
-37
lines changed

misc/cspell/drupal-dictionary.txt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
anyall
2+
autoplay
13
bartik
24
bubbleable
35
buytaert
@@ -18,6 +20,8 @@ druplicon
1820
drush
1921
fapi
2022
fieldable
23+
fulldate
24+
groupby
2125
groupwise
2226
itok
2327
jswebassert

modules/comment/src/CommentViewsData.php

-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
use Drupal\Core\Entity\ContentEntityInterface;
66
use Drupal\views\EntityViewsData;
77

8-
// cspell:ignore fulldate
9-
108
/**
119
* Provides views data for the comment entity type.
1210
*/

modules/file/config/schema/file.schema.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Schema for the configuration files of the File module.
2-
# cspell:ignore autoplay
32

43
file.settings:
54
type: config_object

modules/file/tests/fixtures/update/post_update_playsinline-3046152-node-article.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# cspell:ignore autoplay
21
uuid: 93ccb838-5462-45ee-862a-988b9bdc6e0f
32
langcode: en
43
status: true

modules/node/src/NodeViewsData.php

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
use Drupal\views\EntityViewsData;
66

7-
// cspell:ignore fulldate
8-
97
/**
108
* Provides the views data for the node entity type.
119
*/

modules/taxonomy/config/schema/taxonomy.views.schema.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Schema for the views plugins of the Taxonomy module.
2-
# cspell:ignore anyall
32

43
views.argument.taxonomy_index_tid:
54
type: views.argument.many_to_one

modules/taxonomy/src/Plugin/views/argument_default/Tid.php

-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
use Symfony\Component\DependencyInjection\ContainerInterface;
1515
use Drupal\taxonomy\VocabularyStorageInterface;
1616

17-
// cspell:ignore anyall
18-
1917
/**
2018
* Taxonomy tid default argument.
2119
*/

modules/taxonomy/src/TermViewsData.php

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
use Drupal\views\EntityViewsData;
66

7-
// cspell:ignore fulldate
8-
97
/**
108
* Provides the views data for the taxonomy entity type.
119
*/

modules/taxonomy/tests/modules/taxonomy_test_views/test_views/views.view.taxonomy_default_argument_test.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# cspell:ignore anyall
21
langcode: en
32
status: true
43
dependencies:

modules/user/src/UserViewsData.php

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
use Drupal\views\EntityViewsData;
66

7-
// cspell:ignore fulldate
8-
97
/**
108
* Provides the views data for the user entity type.
119
*/

modules/views/config/schema/views.argument.schema.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Schema for the views argument plugins.
2-
# cspell:ignore fulldate groupby
32
views.argument.*:
43
type: views_argument
54
label: 'Default argument'

modules/views/config/schema/views.filter.schema.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Schema for the views filter plugins.
2-
# cspell:ignore groupby
32
views.filter.*:
43
type: views_filter
54
label: 'Default filter'

modules/views/src/Plugin/views/argument/FullDate.php

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
use Drupal\views\Attribute\ViewsArgument;
66

7-
// cspell:ignore fulldate
8-
97
/**
108
* Argument handler for a full date (CCYYMMDD)
119
*/

modules/views/src/Plugin/views/argument/GroupByNumeric.php

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
use Drupal\views\Attribute\ViewsArgument;
66

7-
// cspell:ignore groupby
8-
97
/**
108
* Simple handler for arguments using group by.
119
*

modules/views/src/Plugin/views/filter/GroupByNumeric.php

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
use Drupal\views\Attribute\ViewsFilter;
66

7-
// cspell:ignore groupby
8-
97
/**
108
* Simple filter to handle greater than/less than filters.
119
*

modules/views/src/Plugin/views/query/Sql.php

-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
use Drupal\views\Views;
2121
use Symfony\Component\DependencyInjection\ContainerInterface;
2222

23-
// cspell: ignore groupby
24-
2523
/**
2624
* Views query plugin for an SQL query.
2725
*

modules/views/src/Plugin/views/sort/GroupByNumeric.php

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
use Drupal\views\ViewExecutable;
99
use Drupal\views\Views;
1010

11-
// cspell:ignore groupby
12-
1311
/**
1412
* Handler for GROUP BY on simple numeric fields.
1513
*/

modules/views/tests/modules/views_test_config/test_views/views.view.test_argument_date.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# cspell:ignore fulldate
21
langcode: en
32
status: true
43
dependencies: { }

modules/views/tests/modules/views_test_config/test_views/views.view.test_destroy.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# cspell:ignore fulldate
21
langcode: en
32
status: true
43
dependencies:

modules/views/tests/src/Kernel/Handler/ArgumentDateTest.php

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
namespace Drupal\Tests\views\Kernel\Handler;
66

7-
// cspell:ignore fulldate
8-
97
use Drupal\Tests\views\Kernel\ViewsKernelTestBase;
108
use Drupal\views\Views;
119

profiles/demo_umami/config/install/core.entity_view_display.media.audio.default.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# cspell:ignore autoplay
21
langcode: en
32
status: true
43
dependencies:

profiles/demo_umami/config/install/core.entity_view_display.media.video.default.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# cspell:ignore autoplay
21
langcode: en
32
status: true
43
dependencies:

profiles/demo_umami/config/install/views.view.related_recipes.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# cspell:ignore anyall
21
langcode: en
32
status: true
43
dependencies:

profiles/standard/config/optional/core.entity_view_display.media.audio.default.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# cspell:ignore autoplay
21
langcode: en
32
status: true
43
dependencies:

profiles/standard/config/optional/core.entity_view_display.media.video.default.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# cspell:ignore autoplay
21
langcode: en
32
status: true
43
dependencies:

recipes/audio_media_type/config/core.entity_view_display.media.audio.default.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# cspell:ignore autoplay
21
langcode: en
32
status: true
43
dependencies:

recipes/local_video_media_type/config/core.entity_view_display.media.video.default.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# cspell:ignore autoplay
21
langcode: en
32
status: true
43
dependencies:

0 commit comments

Comments
 (0)