1 changed files with 34 additions and 34 deletions
@ -1,34 +1,34 @@ |
|||||||
# patterns to exclude when searching directories. defaults to empty list. |
# patterns to exclude when searching directories. defaults to empty list. |
||||||
# follows gitignore pattern format: https://git-scm.com/docs/gitignore#_pattern_format |
# follows gitignore pattern format: https://git-scm.com/docs/gitignore#_pattern_format |
||||||
# the one exception is that a leading "#" character will be automatically escaped |
# the one exception is that a leading "#" character will be automatically escaped |
||||||
#exclude = ["ignore_me/", "ignore*.tcl", "/ignore_from_here"] |
#exclude = ["ignore_me/", "ignore*.tcl", "/ignore_from_here"] |
||||||
# lint violations to ignore. defaults to empty list. |
# lint violations to ignore. defaults to empty list. |
||||||
# can also supply an inline table with a path and a list of violations to ignore under that path. |
# can also supply an inline table with a path and a list of violations to ignore under that path. |
||||||
|
|
||||||
#ignore = [ |
#ignore = [ |
||||||
# "unbraced-expr", |
# "unbraced-expr", |
||||||
# { path = "files_with_long_lines/", rules = ["line-length"] } |
# { path = "files_with_long_lines/", rules = ["line-length"] } |
||||||
#] |
#] |
||||||
|
|
||||||
# extensions of files to lint when searching directories. defaults to tcl, sdc, |
# extensions of files to lint when searching directories. defaults to tcl, sdc, |
||||||
# xdc, and upf. |
# xdc, and upf. |
||||||
extensions = ["tcl", "tm", "sdc"] |
extensions = ["tcl", "tm", "sdc"] |
||||||
# path to command spec defining tool-specific commands and arguments, generated by |
# path to command spec defining tool-specific commands and arguments, generated by |
||||||
# `tclint-plugins make-spec`. |
# `tclint-plugins make-spec`. |
||||||
|
|
||||||
#commands = "~/.tclint/openroad.json" |
#commands = "~/.tclint/openroad.json" |
||||||
|
|
||||||
# with the exception of line-length, the [style] settings affect tclfmt rather than tclint. |
# with the exception of line-length, the [style] settings affect tclfmt rather than tclint. |
||||||
|
|
||||||
[style] |
[style] |
||||||
# number of spaces to indent. can also be set to "tab". defaults to 4. |
# number of spaces to indent. can also be set to "tab". defaults to 4. |
||||||
#indent = 2 |
#indent = 2 |
||||||
# maximum allowed line length. defaults to 100. |
# maximum allowed line length. defaults to 100. |
||||||
line-length = 400 |
line-length = 400 |
||||||
# maximum allowed number of consecutive blank lines. defaults to 2. |
# maximum allowed number of consecutive blank lines. defaults to 2. |
||||||
max-blank-lines = 10 |
max-blank-lines = 10 |
||||||
# whether to require indenting of "namespace eval" blocks. defaults to true. |
# whether to require indenting of "namespace eval" blocks. defaults to true. |
||||||
#indent-namespace-eval = false |
#indent-namespace-eval = false |
||||||
# whether to expect a single space (true) or no spaces (false) surrounding the contents of a braced expression or script argument. |
# whether to expect a single space (true) or no spaces (false) surrounding the contents of a braced expression or script argument. |
||||||
# defaults to false. |
# defaults to false. |
||||||
#spaces-in-braces = true |
#spaces-in-braces = true |
||||||
|
Loading…
Reference in new issue