9 lines
257 B
Python
9 lines
257 B
Python
"""Base C family flags file copied from the USER GUIDE
|
|
(https://github.com/ycm-core/YouCompleteMe#option-2-provide-the-flags-manually)
|
|
"""
|
|
|
|
|
|
def Settings(**kwargs):
|
|
return {
|
|
'flags': ['-x', 'c', '-Wall', '-Wextra', '-Werror', '-Wshadow'],
|
|
}
|