I would like to define a file type that would enable me to ignore all files without extension in ack. In my .ackrc file I have added:
--type-set=csv:ext:csv,tsv
To handle CSV files that I often exclude from searches via --nocsv switch when running ack query. However, some of the files I would like to exclude have no CSV extension. Ideally, I would like to be able to arrive at a syntax:
ack --nocsv --nosansext searchStuff ~/SomeProjects
I would like for this command to:
- Exclude CSV files
- Exclude files without extension
- Include all other syntax files that I have in
SomeProjectsfolder.
Is it possible to define a file type in ack to capture files without extension?