Skip to content

Commit

Permalink
Remove local lint enforcement, update README
Browse files Browse the repository at this point in the history
  • Loading branch information
jonlamb-gh committed Feb 10, 2024
1 parent daddfa1 commit 354c394
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ These sections are the same for each of the plugins.
- `startup-task-name` — Use the provided initial startup task name instead of the default (`(startup)`).
- `single-task-timeline` — Use a single timeline for all tasks instead of a timeline per task. ISRs can still be represented with their own timelines or not.
- `disable-task-interactions` — Don't synthesize interactions between tasks and ISRs when a context switch occurs.
- `use-timeline-id-channel` — Detect task/ISR timeline IDs from the device by reading events on the 'modality-timeline-id' channel (format is `name=<obj-name>,id=<timeline-id>`).
- `use-timeline-id-channel` — Detect task/ISR timeline IDs from the device by reading events on the `modality_timeline_id` channel (format is `name=<obj-name>,id=<timeline-id>`).
- `ignored-object-classes` — Array of object classes to ignore processing during ingest (e.g. `[queue, semaphore]`)
- `user-event-channel` — Instead of `USER_EVENT @ <task-name>`, use the user event channel as the event name (`<channel> @ <task-name>`).
- `user-event-format-string` — Instead of `USER_EVENT @ <task-name>`, use the user event format string as the event name (`<format-string> @ <task-name>`).
Expand Down
2 changes: 0 additions & 2 deletions src/bin/importer.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#![deny(warnings, clippy::all)]

use clap::Parser;
use modality_trace_recorder_plugin::{
import::import, tracing::try_init_tracing_subscriber, ImportProtocol, Interruptor,
Expand Down
2 changes: 0 additions & 2 deletions src/bin/itm_collector.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#![deny(warnings, clippy::all)]

use clap::Parser;
use goblin::elf::Elf;
use itm::{DecoderError, Singles, TracePacket};
Expand Down
2 changes: 0 additions & 2 deletions src/bin/tcp_collector.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#![deny(warnings, clippy::all)]

use clap::Parser;
use modality_trace_recorder_plugin::{
import::streaming::import as import_streaming, streaming::Command,
Expand Down
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#![deny(warnings, clippy::all)]

pub use attr::{AttrKeyIndex, AttrKeys, CommonEventAttrKey, CommonTimelineAttrKey};
pub use auth::AuthTokenBytes;
pub use client::Client;
Expand Down

0 comments on commit 354c394

Please sign in to comment.