Skip to content

Latest commit

 

History

History
69 lines (50 loc) · 1.47 KB

CONTRIBUTING.md

File metadata and controls

69 lines (50 loc) · 1.47 KB

CONTRIBUTING

Commit rules

Mark binary files in git

The following files:

lib/lslint/linux/lslint
lib/lslint/linux32/lslint
lib/lslint/osx/lslint
lib/lslint/windows32/lslint.exe
lib/lslint/windows64/lslint.exe

should be added with git via:

git add --chmod=+x ...          # where ... is the full local file path relative to root

or:

git update-index --chmod=+x ... # where ... is the full local file path relative to root

Changes to the syntax

.sublime/
    syntaxes/
        LSL.sublime-syntax      # syntax
        tests/
            ...                 # syntax test files

Use:

Steps:

  • open the syntax file
  • Tools > Build with ...
    • make sure you run all Syntax Tests options

Changes to the color scheme

.sublime/
    color-schemes/
        LSL.hidden-color-scheme   # color scheme
        tests/
            ...                   # color scheme test files

Use: