vim-patch:9.0.1268: .clangd and .stylelintrc files don't get a filetype (#22079)

Problem:    .clangd and .stylelintrc files don't get a filetype.
Solution:   Use yaml for .clangd and json for .stylelintrc files. (Mark
            Skelton, closes vim/vim#11916)

9c51798a1f

Co-authored-by: Mark Skelton <mdskelton99@gmail.com>
This commit is contained in:
Christian Clason
2023-02-01 10:08:50 +01:00
committed by GitHub
parent 7880eeb2ee
commit d63ad600e0
2 changed files with 4 additions and 2 deletions

View File

@@ -1464,6 +1464,7 @@ local filename = {
['Pipfile.lock'] = 'json', ['Pipfile.lock'] = 'json',
['.firebaserc'] = 'json', ['.firebaserc'] = 'json',
['.prettierrc'] = 'json', ['.prettierrc'] = 'json',
['.stylelintrc'] = 'json',
['.babelrc'] = 'jsonc', ['.babelrc'] = 'jsonc',
['.eslintrc'] = 'jsonc', ['.eslintrc'] = 'jsonc',
['.hintrc'] = 'jsonc', ['.hintrc'] = 'jsonc',
@@ -1699,6 +1700,7 @@ local filename = {
fglrxrc = 'xml', fglrxrc = 'xml',
['/etc/blkid.tab'] = 'xml', ['/etc/blkid.tab'] = 'xml',
['/etc/blkid.tab.old'] = 'xml', ['/etc/blkid.tab.old'] = 'xml',
['.clangd'] = 'yaml',
['.clang-format'] = 'yaml', ['.clang-format'] = 'yaml',
['.clang-tidy'] = 'yaml', ['.clang-tidy'] = 'yaml',
['/etc/zprofile'] = 'zsh', ['/etc/zprofile'] = 'zsh',

View File

@@ -295,7 +295,7 @@ let s:filename_checks = {
\ 'jq': ['file.jq'], \ 'jq': ['file.jq'],
\ 'jovial': ['file.jov', 'file.j73', 'file.jovial'], \ 'jovial': ['file.jov', 'file.j73', 'file.jovial'],
\ 'jproperties': ['file.properties', 'file.properties_xx', 'file.properties_xx_xx', 'some.properties_xx_xx_file', 'org.eclipse.xyz.prefs'], \ 'jproperties': ['file.properties', 'file.properties_xx', 'file.properties_xx_xx', 'some.properties_xx_xx_file', 'org.eclipse.xyz.prefs'],
\ 'json': ['file.json', 'file.jsonp', 'file.json-patch', 'file.webmanifest', 'Pipfile.lock', 'file.ipynb', '.prettierrc', '.firebaserc', 'file.slnf'], \ 'json': ['file.json', 'file.jsonp', 'file.json-patch', 'file.webmanifest', 'Pipfile.lock', 'file.ipynb', '.prettierrc', '.firebaserc', '.stylelintrc', 'file.slnf'],
\ 'json5': ['file.json5'], \ 'json5': ['file.json5'],
\ 'jsonc': ['file.jsonc', '.babelrc', '.eslintrc', '.jsfmtrc', '.jshintrc', '.hintrc', '.swrc', 'jsconfig.json', 'tsconfig.json', 'tsconfig.test.json', 'tsconfig-test.json'], \ 'jsonc': ['file.jsonc', '.babelrc', '.eslintrc', '.jsfmtrc', '.jshintrc', '.hintrc', '.swrc', 'jsconfig.json', 'tsconfig.json', 'tsconfig.test.json', 'tsconfig-test.json'],
\ 'jsonnet': ['file.jsonnet', 'file.libsonnet'], \ 'jsonnet': ['file.jsonnet', 'file.libsonnet'],
@@ -657,7 +657,7 @@ let s:filename_checks = {
\ 'xsd': ['file.xsd'], \ 'xsd': ['file.xsd'],
\ 'xslt': ['file.xsl', 'file.xslt'], \ 'xslt': ['file.xsl', 'file.xslt'],
\ 'yacc': ['file.yy', 'file.yxx', 'file.y++'], \ 'yacc': ['file.yy', 'file.yxx', 'file.y++'],
\ 'yaml': ['file.yaml', 'file.yml', '.clang-format', '.clang-tidy'], \ 'yaml': ['file.yaml', 'file.yml', '.clangd', '.clang-format', '.clang-tidy'],
\ 'yang': ['file.yang'], \ 'yang': ['file.yang'],
\ 'z8a': ['file.z8a'], \ 'z8a': ['file.z8a'],
\ 'zig': ['file.zig'], \ 'zig': ['file.zig'],