Seiichi Uchida
d4ffd1efa4
Support @generated marker to skip code formatting
...
This is a copy of #4296 with these changes:
* file is not reopened again to find if the file is generated
* first five lines are scanned for `@generated` marker instead of one
* no attempt is made to only search for marker in comments
`@generated` marker is used by certain tools to understand that the
file is generated, so it should be treated differently than a file
written by a human:
* linters should not be invoked on these files,
* diffs in these files are less important,
* and these files should not be reformatted.
This PR proposes builtin support for `@generated` marker.
I have not found a standard for a generated file marker, but:
* Facebook [uses `@generated` marker](https://tinyurl.com/fb-generated )
* Phabricator tool which was spawned from Facebook internal tool
[also understands `@generated` marker](https://git.io/JnVHa )
* Cargo inserts `@generated` marker into [generated Cargo.lock files](https://git.io/JnVHP )
My personal story is that rust-protobuf project which I maintain
was broken twice because of incompatibilities/bugs in rustfmt marker
handling: [one](https://github.com/stepancheg/rust-protobuf/issues/493 ),
[two](https://github.com/stepancheg/rust-protobuf/issues/551 ).
(Also, rust-protobuf started generating `@generated` marker
[6 years ago](https://git.io/JnV5h )).
While rustfmt AST markers are useful to apply to a certain AST
elements, disable whole-file-at-once all-tools-at-once text level
marker might be easier to use and more reliable for generated code.
2021-09-14 21:22:26 -05:00
..
2018-11-04 23:41:21 +01:00
2019-06-08 18:47:18 +09:00
2019-06-09 09:20:39 +09:00
2021-09-14 21:22:26 -05:00
2019-06-17 08:53:39 +09:00
2018-07-14 19:22:31 +02:00
2019-02-01 19:58:38 +09:00
2018-06-30 17:04:50 +02:00
2018-09-22 00:09:11 +02:00
2018-09-07 14:48:52 +02:00
2019-07-16 19:36:23 +09:00
2018-12-14 09:54:23 +01:00
2019-02-15 18:11:49 +09:00
2019-09-02 18:36:51 +09:00
2019-01-16 23:06:28 +01:00
2019-01-28 23:05:42 +09:00
2019-01-27 14:38:57 +09:00
2019-02-01 19:58:38 +09:00
2019-03-22 18:20:00 +09:00
2019-07-15 22:41:56 +09:00
2019-06-05 00:14:12 +09:00
2019-07-17 09:40:33 +09:00
2019-08-16 11:15:28 +09:00
2020-07-15 09:19:21 -05:00
2019-10-11 18:19:44 +09:00
2021-01-27 19:26:58 -06:00
2021-07-27 19:50:11 -05:00
2019-05-10 21:22:52 +08:00
2019-09-24 09:24:05 +09:00
2019-01-27 14:38:57 +09:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2019-03-17 12:21:21 +09:00
2019-01-28 23:05:39 +09:00
2019-10-07 16:40:27 +09:00
2018-07-17 15:40:19 +12:00
2018-06-25 15:27:09 +09:00
2019-06-29 10:11:20 -05:00
2018-06-27 01:36:01 +02:00
2019-03-20 18:18:02 +01:00
2019-08-02 23:54:39 +09:00
2019-06-07 16:56:30 +09:00
2018-06-27 01:35:53 +02:00
2018-03-02 15:07:13 +13:00
2018-05-06 15:14:30 +09:00
2018-03-02 15:07:13 +13:00
2018-08-31 00:04:23 -07:00
2018-08-31 18:10:47 +09:00
2018-06-27 15:28:33 +02:00
2018-10-15 12:09:53 +13:00
2018-06-27 01:35:53 +02:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-05-14 16:25:10 +12:00
2018-03-02 15:07:13 +13:00
2019-01-15 08:41:09 +09:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2021-01-27 18:50:03 -06:00
2018-03-02 15:07:13 +13:00
2018-06-27 01:36:02 +02:00
2019-06-07 16:56:30 +09:00
2019-05-10 21:22:52 +08:00
2018-03-02 15:07:13 +13:00
2018-07-25 18:27:02 +09:00
2018-03-02 15:07:13 +13:00
2018-06-27 01:36:02 +02:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2019-09-04 23:01:04 +09:00
2019-10-04 11:25:16 +09:00
2018-09-22 12:16:38 +02:00
2018-11-08 19:38:01 -07:00
2020-11-28 17:41:21 -06:00
2018-03-02 15:07:13 +13:00
2020-11-28 21:59:30 -06:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-06-27 01:36:01 +02:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2019-07-15 22:41:56 +09:00
2018-06-27 15:28:32 +02:00
2018-06-27 01:35:53 +02:00
2019-06-03 22:26:48 +09:00
2018-06-27 01:35:53 +02:00
2018-06-27 01:35:53 +02:00
2018-06-27 01:35:53 +02:00
2018-06-27 01:35:53 +02:00
2019-06-03 22:26:48 +09:00
2018-06-27 01:35:53 +02:00
2019-06-03 22:26:48 +09:00
2019-09-20 16:11:52 +09:00
2019-02-19 11:56:42 +09:00
2018-06-27 01:36:01 +02:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-03-06 19:42:38 +09:00
2018-03-02 15:07:13 +13:00
2021-08-22 12:06:18 -05:00
2018-06-27 15:28:32 +02:00
2021-01-17 11:48:47 -06:00
2021-01-27 20:58:42 -06:00
2021-01-17 11:48:47 -06:00
2021-08-31 18:33:06 -05:00
2018-08-24 14:39:05 +09:00
2018-04-11 10:46:49 +12:00
2018-06-27 15:28:32 +02:00
2018-04-11 10:46:49 +12:00
2020-03-27 22:29:12 -05:00
2019-05-10 21:22:52 +08:00
2019-10-08 10:12:21 +09:00
2019-10-08 11:00:31 +09:00
2019-10-17 20:13:11 -05:00
2021-01-27 20:58:42 -06:00
2021-09-06 18:14:13 -05:00
2020-03-27 22:13:46 -05:00
2020-03-31 15:30:26 +09:00
2021-09-02 20:53:15 -05:00
2021-09-02 20:53:15 -05:00
2020-08-09 14:32:34 -05:00
2020-11-14 11:50:28 -06:00
2020-11-16 15:48:20 -06:00
2021-09-06 18:14:13 -05:00
2020-12-20 12:05:05 -06:00
2021-01-16 11:17:23 -06:00
2021-01-28 22:01:50 -06:00
2021-08-06 22:03:40 -05:00
2021-09-02 20:53:15 -05:00
2021-09-02 20:53:15 -05:00
2021-09-07 20:22:09 -05:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-08-16 19:55:15 +02:00
2018-08-16 19:55:15 +02:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-06-27 01:36:01 +02:00
2018-03-02 15:07:13 +13:00
2019-07-17 23:07:12 +09:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-06-30 17:04:50 +02:00
2018-06-30 17:04:50 +02:00
2018-06-27 15:28:32 +02:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-06-30 17:04:50 +02:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-06-27 01:35:57 +02:00
2018-03-02 15:07:13 +13:00
2018-03-31 13:16:36 +09:00
2018-03-02 15:07:13 +13:00
2018-03-08 18:05:39 +09:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-09-11 08:54:43 +03:00
2019-05-10 21:22:52 +08:00
2019-05-10 21:22:52 +08:00
2018-04-01 23:09:53 +09:00
2018-05-08 20:34:44 +02:00
2018-05-02 10:38:02 +02:00
2018-06-19 20:51:49 +09:00
2018-06-05 13:42:58 +09:00
2020-11-29 13:26:58 -06:00
2018-06-30 17:04:50 +02:00
2019-02-01 00:22:47 +09:00
2019-09-06 22:41:03 +09:00
2019-10-19 16:56:32 +09:00
2018-08-05 10:50:24 +09:00
2020-02-08 22:21:37 -06:00
2018-08-31 16:25:01 +03:00
2018-08-31 00:04:23 -07:00
2018-08-31 00:04:23 -07:00
2018-08-31 15:25:08 +03:00
2018-08-24 00:58:21 -04:00
2018-08-27 13:44:56 -04:00
2018-09-18 00:01:51 +02:00
2018-09-11 11:09:31 +03:00
2019-03-29 20:12:45 +09:00
2018-10-13 14:12:43 -03:00
2018-10-15 23:24:35 +02:00
2018-10-06 16:32:27 +03:00
2018-10-15 11:18:37 +09:00
2018-10-06 10:59:47 +03:00
2018-11-07 15:00:33 +01:00
2018-11-05 20:22:06 +01:00
2021-09-08 23:27:51 -05:00
2018-11-13 21:10:30 +01:00
2019-03-02 17:33:43 +09:00
2018-11-28 22:50:17 +01:00
2019-02-08 00:05:54 +09:00
2019-01-27 12:46:14 +01:00
2018-12-24 06:18:00 +09:00
2019-02-07 00:05:05 +01:00
2019-06-07 16:56:30 +09:00
2019-03-16 12:23:02 +01:00
2019-03-24 18:43:35 +09:00
2019-04-23 16:21:04 -07:00
2019-04-23 08:50:44 +09:00
2019-04-29 21:38:38 +09:00
2019-07-15 22:41:56 +09:00
2019-06-30 12:19:24 +09:00
2019-06-25 23:14:19 +09:00
2019-07-29 05:56:34 +09:00
2019-07-14 22:16:47 +09:00
2019-08-11 12:49:14 +09:00
2019-08-13 23:21:55 +09:00
2021-01-17 11:48:47 -06:00
2019-10-02 23:58:25 +09:00
2019-09-18 22:39:27 +09:00
2019-10-07 16:43:50 +09:00
2020-10-24 11:13:00 -05:00
2020-06-11 23:29:51 -05:00
2020-11-14 11:50:28 -06:00
2020-11-29 13:26:58 -06:00
2020-11-29 13:26:58 -06:00
2020-11-29 13:26:58 -06:00
2021-04-21 21:30:42 -05:00
2020-11-14 11:50:28 -06:00
2020-10-24 11:13:00 -05:00
2021-02-17 20:47:20 -06:00
2020-12-20 12:05:05 -06:00
2021-02-17 20:19:27 -06:00
2021-01-27 20:58:42 -06:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-06-27 01:36:02 +02:00
2018-05-21 22:37:55 +08:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-03-07 10:51:28 +09:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-10-30 03:21:28 +01:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-08-31 10:49:39 +09:00
2019-08-28 20:50:41 +09:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2019-03-30 18:37:37 +01:00
2018-03-02 15:07:13 +13:00
2018-09-11 08:54:43 +03:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2021-05-04 18:38:22 -05:00
2018-03-02 15:07:13 +13:00
2021-01-17 11:48:47 -06:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2019-02-19 11:56:42 +09:00
2020-11-30 23:24:36 -06:00
2018-03-02 15:07:13 +13:00
2019-03-05 00:18:33 +09:00
2018-03-02 15:07:13 +13:00
2019-05-01 16:27:34 +08:00
2019-05-22 00:10:35 +09:00
2019-03-11 23:18:43 +09:00
2019-03-11 23:18:43 +09:00
2018-03-02 15:07:13 +13:00
2018-06-27 15:28:32 +02:00
2018-03-02 15:07:13 +13:00
2018-10-19 12:28:00 +02:00
2019-08-06 11:09:45 +09:00
2019-04-24 21:01:09 +02:00
2019-04-24 21:01:09 +02:00
2018-03-02 15:07:13 +13:00
2018-10-19 12:28:00 +02:00
2018-10-19 12:28:00 +02:00
2018-03-02 15:07:13 +13:00
2019-02-19 11:56:42 +09:00
2018-03-02 15:07:13 +13:00
2018-03-02 15:07:13 +13:00
2021-01-09 12:11:52 -06:00
2018-03-02 15:07:13 +13:00
2019-01-15 08:41:09 +09:00
2018-03-02 15:07:13 +13:00
2018-06-27 01:36:01 +02:00
2018-03-02 15:07:13 +13:00
2018-06-27 01:36:01 +02:00
2018-06-27 01:36:01 +02:00
2018-06-27 01:36:01 +02:00
2018-06-27 01:36:01 +02:00
2018-03-02 15:07:13 +13:00
2020-11-28 17:41:21 -06:00
2018-03-02 15:07:13 +13:00
2019-01-31 23:44:58 +09:00
2021-08-22 12:06:18 -05:00
2020-11-02 18:31:51 -06:00
2018-03-02 15:07:13 +13:00
2020-11-02 18:31:51 -06:00
2020-11-02 18:31:51 -06:00
2018-03-02 15:07:13 +13:00
2019-02-19 11:56:42 +09:00
2020-12-20 12:05:05 -06:00
2019-06-17 08:53:17 +09:00
2019-02-19 11:56:42 +09:00
2020-09-23 00:45:18 -05:00
2018-03-06 19:42:55 +09:00
2018-09-11 12:34:21 +03:00
2018-06-27 01:35:53 +02:00
2018-03-02 15:07:13 +13:00
2018-05-02 11:38:23 +02:00
2019-05-01 16:27:34 +08:00