mirror of
https://github.com/cline/cline.git
synced 2026-09-19 10:13:34 +08:00
* Move all vscode related files to /apps/vscode * Fix launch and biome * Ignore generated files * Remove unused icons * fix tsconfig * Update workflows (#10962) * Add default branch * Move files to the right dir * fix: add vscode publish README placeholder --------- Co-authored-by: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com>
22 lines
854 B
YAML
22 lines
854 B
YAML
version: v2
|
|
modules:
|
|
- path: proto
|
|
name: cline/cline/lint
|
|
|
|
lint:
|
|
use:
|
|
- STANDARD
|
|
|
|
except: # Add exceptions for current patterns that contradict STANDARD settings
|
|
- RPC_PASCAL_CASE # rpcs are camel case (start with lowercase)
|
|
- RPC_REQUEST_RESPONSE_UNIQUE # request messages are not unique.
|
|
- RPC_REQUEST_STANDARD_NAME # request messages dont all end with Request
|
|
- RPC_RESPONSE_STANDARD_NAME # response messages dont all end with Response
|
|
- PACKAGE_VERSION_SUFFIX # package name does not contain version.
|
|
- ENUM_VALUE_PREFIX # enum values dont start with the enum name.
|
|
- ENUM_ZERO_VALUE_SUFFIX # first value does not have to be UNSPECIFIED.
|
|
|
|
# breaking:
|
|
# use:
|
|
# - WIRE_JSON # Detect changes that break the json wire format (this is the minimum recommended level.)
|