|
3 | 3 | File Open Information Rules |
4 | 4 | --------------------------- |
5 | 5 |
|
| 6 | +file_open_information_100 |
| 7 | +######################### |
| 8 | + |
| 9 | +|phase_2| |error| |whitespace| |
| 10 | + |
| 11 | +This rule checks for a single space before the **open** keyword. |
| 12 | + |
| 13 | +|configuring_whitespace_rules_link| |
| 14 | + |
| 15 | +**Violation** |
| 16 | + |
| 17 | +.. code-block:: vhdl |
| 18 | +
|
| 19 | + file defaultImage : load_file_type open read_mode is load_file_name; |
| 20 | +
|
| 21 | +**Fix** |
| 22 | + |
| 23 | +.. code-block:: vhdl |
| 24 | +
|
| 25 | + file defaultImage : load_file_type open read_mode is load_file_name; |
| 26 | +
|
| 27 | +file_open_information_101 |
| 28 | +######################### |
| 29 | + |
| 30 | +|phase_2| |error| |whitespace| |
| 31 | + |
| 32 | +This rule checks for a single space after the **open** keyword. |
| 33 | + |
| 34 | +|configuring_whitespace_rules_link| |
| 35 | + |
| 36 | +**Violation** |
| 37 | + |
| 38 | +.. code-block:: vhdl |
| 39 | +
|
| 40 | + file defaultImage : load_file_type open read_mode is load_file_name; |
| 41 | +
|
| 42 | +**Fix** |
| 43 | + |
| 44 | +.. code-block:: vhdl |
| 45 | +
|
| 46 | + file defaultImage : load_file_type open read_mode is load_file_name; |
| 47 | +
|
| 48 | +file_open_information_102 |
| 49 | +######################### |
| 50 | + |
| 51 | +|phase_2| |error| |whitespace| |
| 52 | + |
| 53 | +This rule checks for a single space before the **is** keyword. |
| 54 | + |
| 55 | +|configuring_whitespace_rules_link| |
| 56 | + |
| 57 | +**Violation** |
| 58 | + |
| 59 | +.. code-block:: vhdl |
| 60 | +
|
| 61 | + file defaultImage : load_file_type open read_mode is load_file_name; |
| 62 | +
|
| 63 | +**Fix** |
| 64 | + |
| 65 | +.. code-block:: vhdl |
| 66 | +
|
| 67 | + file defaultImage : load_file_type open read_mode is load_file_name; |
| 68 | +
|
| 69 | +file_open_information_103 |
| 70 | +######################### |
| 71 | + |
| 72 | +|phase_2| |error| |whitespace| |
| 73 | + |
| 74 | +This rule checks for a single space after the **is** keyword. |
| 75 | + |
| 76 | +|configuring_whitespace_rules_link| |
| 77 | + |
| 78 | +**Violation** |
| 79 | + |
| 80 | +.. code-block:: vhdl |
| 81 | +
|
| 82 | + file defaultImage : load_file_type open read_mode is load_file_name; |
| 83 | +
|
| 84 | +**Fix** |
| 85 | + |
| 86 | +.. code-block:: vhdl |
| 87 | +
|
| 88 | + file defaultImage : load_file_type open read_mode is load_file_name; |
| 89 | +
|
6 | 90 | file_open_information_500 |
7 | 91 | ######################### |
8 | 92 |
|
|
0 commit comments