Age | Commit message (Collapse) | Author |
|
|
|
|
|
This further addresses Issue #1758.
|
|
|
|
Split Hack out from PHP, modernize
|
|
it executes $PROJECT/vendor/bin/hhast, so that's not a good idea.
|
|
|
|
|
|
Support fixing YAML and HTML files with prettier for files without file extensions.
|
|
|
|
fixes #1738
- Replace previous `hh_client` usage with LSP client
- Add `HHAST` linter
- Split Hack from PHP: Hack is increasingly diverging from PHP:
- Hack tools do not understand PHP
- Most PHP tools do not handle Hack code well (including vim's syntax
highightling files)
- http://github.com/hhvm/vim-hack now sets filetype to `hack`
|
|
Show LSP diagnostic codes for `%code%` in message formats
|
|
fixes #1767
|
|
|
|
|
|
|
|
|
|
|
|
fired
|
|
|
|
set marks to add to jump list
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Pipenv virtualenv and project path detection
|
|
|
|
"Pipfile" and "Pipfile.lock" files are also often located in Python module or
package directories and their presence is an okay heuristic for finding project
roots.
|
|
Pipenv doesn't do local virtualenvs by default, it uses a special local
directory to store them all.
However, if you run Pipenv with the PIPENV_VENV_IN_PROJECT environment variable
set to 1, it creates the virtual environment in the root of the project, under
the name ".venv". This is why I've added this as a possible virtualenv dir
name.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
add options variable to isort
|