@cspell/filetypes 9.5.0 → 9.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/definitions.js +4 -2
- package/dist/filetypes.d.ts +1 -1
- package/package.json +2 -2
package/dist/definitions.js
CHANGED
|
@@ -11,6 +11,7 @@ export const definitions = [
|
|
|
11
11
|
{ id: 'cache_files', extensions: [], filenames: ['.DS_Store', '.cspellcache', '.eslintcache'] },
|
|
12
12
|
{ id: 'clojure', extensions: ['.clj', '.cljc', '.cljs', '.cljx', '.clojure', '.edn'] },
|
|
13
13
|
{ id: 'cmake', extensions: ['.cmake'], filenames: ['CMakeLists.txt'] },
|
|
14
|
+
{ id: 'codeowners', extensions: [], filenames: ['codeowners'] },
|
|
14
15
|
{ id: 'coffeescript', extensions: ['.coffee', '.cson', '.iced'] },
|
|
15
16
|
{
|
|
16
17
|
id: 'cpp',
|
|
@@ -71,13 +72,13 @@ export const definitions = [
|
|
|
71
72
|
{ id: 'haxe', extensions: ['.hx'] },
|
|
72
73
|
{ id: 'hlsl', extensions: ['.cginc', '.compute', '.fx', '.fxh', '.hlsl', '.hlsli', '.psh', '.vsh'] },
|
|
73
74
|
{ id: 'html', extensions: ['.asp', '.aspx', '.ejs', '.htm', '.html', '.jshtm', '.jsp', '.mdoc', '.rhtml', '.shtml', '.volt', '.vue', '.xht', '.xhtml'] },
|
|
74
|
-
{ id: 'ignore', extensions: ['.git-blame-ignore-revs', '.gitignore', '.gitignore_global', '.npmignore'], filenames: ['
|
|
75
|
+
{ id: 'ignore', extensions: ['.git-blame-ignore-revs', '.gitignore', '.gitignore_global', '.npmignore'], filenames: ['.*ignore'] },
|
|
75
76
|
{ id: 'ini', extensions: ['.conf', '.ini'] },
|
|
76
77
|
{ id: 'jade', extensions: ['.jade', '.pug'] },
|
|
77
78
|
{ id: 'java', extensions: ['.jav', '.java'] },
|
|
78
79
|
{ id: 'javascript', extensions: ['.cjs', '.es6', '.js', '.mjs', '.pac'], filenames: ['jakefile'] },
|
|
79
80
|
{ id: 'javascriptreact', extensions: ['.jsx'] },
|
|
80
|
-
{ id: 'jinja', extensions: ['.jinja'] },
|
|
81
|
+
{ id: 'jinja', extensions: ['.j2', '.jinja', '.jinja2'] },
|
|
81
82
|
{
|
|
82
83
|
id: 'json',
|
|
83
84
|
extensions: [
|
|
@@ -181,6 +182,7 @@ export const definitions = [
|
|
|
181
182
|
extensions: ['.cfg', '.conf', '.directory', '.editorconfig', '.gitattributes', '.gitconfig', '.gitmodules', '.npmrc', '.properties', '.repo'],
|
|
182
183
|
filenames: ['.env', 'gitconfig'],
|
|
183
184
|
},
|
|
185
|
+
{ id: 'protobuf', extensions: ['.proto', '.txtpb', '.textproto', '.textpb', '.pbtxt'] },
|
|
184
186
|
{ id: 'puppet', extensions: ['.puppet'] },
|
|
185
187
|
{ id: 'purescript', extensions: ['.purs'] },
|
|
186
188
|
{ id: 'python', extensions: ['.cpy', '.gyp', '.gypi', '.ipy', '.py', '.pyi', '.pyt', '.pyw', '.rpy'], filenames: ['SConscript', 'SConstruct'] },
|
package/dist/filetypes.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public",
|
|
5
5
|
"provenance": true
|
|
6
6
|
},
|
|
7
|
-
"version": "9.
|
|
7
|
+
"version": "9.6.0",
|
|
8
8
|
"description": "Library to determine file types based upon the file name.",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"cspell",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"engines": {
|
|
52
52
|
"node": ">=20"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "163793ddf2a0ad90bc7c90351698a106003297af"
|
|
55
55
|
}
|