-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.wiswa.jsonnet
More file actions
67 lines (67 loc) · 1.82 KB
/
Copy path.wiswa.jsonnet
File metadata and controls
67 lines (67 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
uses_user_defaults: true,
security_policy_supported_versions: { '0.0.x': ':white_check_mark:' },
project_name: 'bfcodec',
version: '0.0.6',
description: 'Tools and a C/C++ library to manipulate BFCodec-encrypted content.',
custom_project_badges: [
{
anchor: '[]',
href: 'https://github.com/Tatsh/bfcodec/actions/workflows/tests.yml',
},
{
anchor: '[]',
href: 'https://coveralls.io/github/Tatsh/bfcodec?branch=master',
},
],
keywords: ['android', 'ios', 'konami', 'jubeat', 'jukebeat', 'reflec beat'],
want_codeql: false,
want_main: false,
want_tests: false,
clang_format_args: 'include/*.h src/*.c* tools/*.c* tools/*.h',
shared_ignore+: ['.deploy-rb-*', 'mulist*'],
package_json+: {
cspell+: {
ignorePaths+: [
'*.patch',
'.docs/*.tag.xml',
'.docs/*.tags',
'tools/goodjbt.json',
'tools/goodrb.json',
],
},
},
prettierignore+: ['*.cc', '*.inc', '*.patch', '*.tags'],
cz+: {
commitizen+: {
version_files+: [
'man/deploy-rb.1',
'man/jbt.1',
'man/unjbt.1',
'sh.tat.bfcodec.yml',
'snapcraft.yaml',
],
},
},
vcpkg+: {
dependencies+: ['argparse', 'libplist', 'libzip', 'spdlog'],
},
vscode+: {
c_cpp+: {
configurations: [
{
cStandard: 'gnu23',
compilerPath: '/usr/bin/gcc',
cppStandard: 'gnu++23',
includePath: [
'${workspaceFolder}/include/**',
'${workspaceFolder}/src/**',
'${workspaceFolder}/tools/**',
],
name: 'Linux',
},
],
},
},
project_type: 'c++',
}