Fix tabs and trailing spaces in objc sources
parent
f0d8e8f23c
commit
11f73b0e7f
|
|
@ -7,14 +7,14 @@ repos:
|
||||||
- id: no-trigraphs
|
- id: no-trigraphs
|
||||||
- id: copyright
|
- id: copyright
|
||||||
- id: end-of-file
|
- id: end-of-file
|
||||||
files: \.(cpp|c|h|py|glsl|cmake|txt)$
|
files: \.(cpp|c|m|mm|h|py|glsl|cmake|txt)$
|
||||||
exclude: language.txt
|
exclude: language.txt
|
||||||
- id: indent-with-spaces
|
- id: indent-with-spaces
|
||||||
files: \.(cpp|c|h|inl|py|glsl|cmake)$
|
files: \.(cpp|c|m|mm|h|inl|py|glsl|cmake)$
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
rev: v5.0.0
|
rev: v5.0.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: check-xml
|
- id: check-xml
|
||||||
- id: mixed-line-ending
|
- id: mixed-line-ending
|
||||||
- id: trailing-whitespace
|
- id: trailing-whitespace
|
||||||
files: \.(cpp|c|h|inl|py|glsl|cmake|yaml|sh)$
|
files: \.(cpp|c|m|mm|h|inl|py|glsl|cmake|yaml|sh)$
|
||||||
|
|
|
||||||
|
|
@ -70,7 +70,7 @@ def process_directory(directory, extensions, tab_stop):
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
parser = argparse.ArgumentParser(description='Convert tabs to spaces in files, considering tab stops.')
|
parser = argparse.ArgumentParser(description='Convert tabs to spaces in files, considering tab stops.')
|
||||||
parser.add_argument('-e', '--extensions', type=str, default='c,cpp,h,hpp,inl,py,glsl,cmake', help='Comma-separated list of file extensions to process (default: "c,cpp,h,hpp,inl,py,glsl,cmake")')
|
parser.add_argument('-e', '--extensions', type=str, default='c,cpp,m,mm,h,hpp,inl,py,glsl,cmake', help='Comma-separated list of file extensions to process (default: "c,cpp,h,hpp,inl,py,glsl,cmake")')
|
||||||
parser.add_argument('-t', '--tabstop', type=int, default=4, help='Tab stop size (default: 4)')
|
parser.add_argument('-t', '--tabstop', type=int, default=4, help='Tab stop size (default: 4)')
|
||||||
parser.add_argument('-d', '--directory', type=str, required=True, help='Directory to process')
|
parser.add_argument('-d', '--directory', type=str, required=True, help='Directory to process')
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue