Skip to content

Commit 7b9401e

Browse files
committed
drop TODO
1 parent 928e6c1 commit 7b9401e

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.credo.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
name: "default",
55
strict: true,
66
checks: [
7-
{Credo.Check.Design.TagTODO, false},
7+
{Credo.Check.Design.TagTODO, false}
88
]
99
}
1010
]

.formatter.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Used by "mix format"
22
[
3-
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"]
3+
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}", ".credo.exs"]
44
]

lib/queries/sequence_number.ex

-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ defmodule EctoSQLite3Extras.SequenceNumber do
1616
}
1717
end
1818

19-
# TODO(@orsinium): The query fails if the table doesn't exist.
20-
# The table is created only when the first autoincrement column is created.
21-
# Can we fix it without doing INSERTs?
2219
def query(_args \\ []) do
2320
"""
2421
/* from ecto_sqlite3_extras */

0 commit comments

Comments
 (0)