Merge branch 'master' into fix-rubocop-issues-1773-793
This commit is contained in:
commit
92b1f92ab0
178
.travis.yml
178
.travis.yml
|
@ -11,53 +11,24 @@ notifications:
|
||||||
|
|
||||||
script: sh build-package.sh
|
script: sh build-package.sh
|
||||||
|
|
||||||
|
language: generic
|
||||||
|
|
||||||
|
cache:
|
||||||
|
timeout: 1000
|
||||||
|
|
||||||
git:
|
git:
|
||||||
depth: 10
|
depth: 1
|
||||||
|
|
||||||
php:
|
os:
|
||||||
- '5.6'
|
- linux
|
||||||
python:
|
- osx
|
||||||
- '2.7'
|
sudo: required
|
||||||
go:
|
|
||||||
- release
|
|
||||||
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- os: linux
|
|
||||||
dist: trusty
|
|
||||||
sudo: required
|
|
||||||
services:
|
|
||||||
- docker
|
|
||||||
env:
|
|
||||||
- ATOM_CHANNEL=stable
|
|
||||||
- os: linux
|
|
||||||
dist: trusty
|
|
||||||
sudo: required
|
|
||||||
services:
|
|
||||||
- docker
|
|
||||||
env:
|
|
||||||
- ATOM_CHANNEL=beta
|
|
||||||
# - os: linux
|
|
||||||
# dist: trusty
|
|
||||||
# sudo: require
|
|
||||||
# env:
|
|
||||||
# - ATOM_CHANNEL=stable
|
|
||||||
# - os: linux
|
|
||||||
# dist: trusty
|
|
||||||
# sudo: require
|
|
||||||
# env:
|
|
||||||
# - ATOM_CHANNEL=beta
|
|
||||||
- os: osx
|
|
||||||
env:
|
|
||||||
- ATOM_CHANNEL=stable
|
|
||||||
# - os: osx
|
|
||||||
# env:
|
|
||||||
# - ATOM_CHANNEL=beta
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
- APM_TEST_PACKAGES="language-marko language-html-swig language-svg language-d mavensmate-atom language-lua language-puppet fuse"
|
matrix:
|
||||||
- PATH="/home/travis/gopath/bin:$HOME/.linuxbrew/bin:$PATH"
|
- ATOM_SCRIPT_NAME=atom-beta APM_SCRIPT_NAME=apm-beta
|
||||||
|
- ATOM_SCRIPT_NAME=atom APM_SCRIPT_NAME=apm
|
||||||
|
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
|
@ -71,9 +42,7 @@ addons:
|
||||||
- libgnome-keyring-dev
|
- libgnome-keyring-dev
|
||||||
- fakeroot
|
- fakeroot
|
||||||
- crystal
|
- crystal
|
||||||
- ocaml
|
|
||||||
- camlp4
|
- camlp4
|
||||||
- opam
|
|
||||||
- php5-cli
|
- php5-cli
|
||||||
- golang
|
- golang
|
||||||
|
|
||||||
|
@ -84,111 +53,38 @@ cache:
|
||||||
- vendor/bundle # gems are installed here, https://docs.travis-ci.com/user/languages/ruby/#Dependency-Management
|
- vendor/bundle # gems are installed here, https://docs.travis-ci.com/user/languages/ruby/#Dependency-Management
|
||||||
- node_modules
|
- node_modules
|
||||||
- $HOME/.atom
|
- $HOME/.atom
|
||||||
- $HOME/.stack
|
- $HOME/.opam
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
# Install Homebrew on Linux
|
# linux: Install Nix, Nix packages, upgrade pip, and install python packages
|
||||||
|
# osx: Update Homebrew, remove conflicting cask, brew bundle, symlink elm-format,
|
||||||
|
# upgrade pip, and install python packages
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
||||||
git clone --depth=1 https://github.com/Linuxbrew/brew.git ~/.linuxbrew || true;
|
curl https://nixos.org/nix/install | sh &&
|
||||||
|
. ~/.nix-profile/etc/profile.d/nix.sh &&
|
||||||
|
nix-env -i uncrustify R elm-format terraform atom atom-beta opam &&
|
||||||
|
pip install --upgrade pip &&
|
||||||
|
pip install --user -r requirements.txt;
|
||||||
|
elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||||
|
brew update && brew cask zap oclint && brew bundle &&
|
||||||
|
ln -s /usr/local/bin/elm-format-0.17 /usr/local/bin/elm-format &&
|
||||||
|
pip2 install --upgrade pip &&
|
||||||
|
pip2 install -r requirements.txt;
|
||||||
|
else
|
||||||
|
echo Error:TRAVIS_OS_NAME && exit 1;
|
||||||
fi
|
fi
|
||||||
# Update Homebrew
|
|
||||||
- brew update
|
|
||||||
- brew tap homebrew/dupes
|
|
||||||
- brew tap homebrew/versions
|
|
||||||
# Ruby language support
|
# Ruby language support
|
||||||
# - gem install ruby-beautify --verbose
|
- bundle install
|
||||||
# - gem install rubocop
|
|
||||||
- gem install htmlbeautifier
|
|
||||||
- gem install puppet-lint
|
|
||||||
# Sass language support
|
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
||||||
gem install sass;
|
|
||||||
else
|
|
||||||
docker pull unibeautify/sass-convert;
|
|
||||||
fi
|
|
||||||
# Python language support
|
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
|
||||||
sudo chmod 777 -R /opt/python;
|
|
||||||
pip install --upgrade pip;
|
|
||||||
pip install --user --upgrade autopep8;
|
|
||||||
pip install --user --upgrade isort;
|
|
||||||
else
|
|
||||||
pip install --upgrade pip;
|
|
||||||
pip install --upgrade autopep8;
|
|
||||||
pip install --upgrade isort;
|
|
||||||
fi
|
|
||||||
# SQL language support
|
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
|
||||||
pip install --user --upgrade sqlparse;
|
|
||||||
else
|
|
||||||
pip install --upgrade sqlparse;
|
|
||||||
fi
|
|
||||||
# Java, C, C++, C#, Objective-C, D, Pawn, Vala
|
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
||||||
brew install uncrustify;
|
|
||||||
else
|
|
||||||
docker pull unibeautify/uncrustify;
|
|
||||||
fi
|
|
||||||
# R
|
# R
|
||||||
- brew tap homebrew/science
|
- Rscript --version
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
||||||
brew install r;
|
|
||||||
rscript --version;
|
|
||||||
else
|
|
||||||
docker pull unibeautify/rscript;
|
|
||||||
fi
|
|
||||||
# PHP
|
# PHP
|
||||||
- brew tap homebrew/homebrew-php
|
- composer install
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
||||||
brew install php56 || true;
|
|
||||||
brew gist-logs php56 || true;
|
|
||||||
echo -e "\n[Phar]\nphar.readonly = Off\n" >> /usr/local/etc/php/5.6/php.ini;
|
|
||||||
brew install php-cs-fixer || true;
|
|
||||||
brew gist-logs php-cs-fixer || true;
|
|
||||||
fi
|
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
|
||||||
wget http://get.sensiolabs.org/php-cs-fixer.phar -O php-cs-fixer;
|
|
||||||
chmod a+x php-cs-fixer;
|
|
||||||
mv php-cs-fixer $HOME/.linuxbrew/bin/php-cs-fixer;
|
|
||||||
fi
|
|
||||||
# CoffeeScript
|
# CoffeeScript
|
||||||
- npm install coffee-formatter
|
- npm install coffee-formatter
|
||||||
# Haskell
|
|
||||||
# - brew install haskell-stack
|
|
||||||
# - stack setup
|
|
||||||
# - stack install stylish-haskell
|
|
||||||
# Elm
|
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
||||||
curl -L -o /tmp/elm-format.tgz
|
|
||||||
https://github.com/avh4/elm-format/releases/download/0.7.0-exp/elm-format-0.17-0.7.0-exp-mac-x64.tgz;
|
|
||||||
tar xvzf /tmp/elm-format.tgz -C /usr/local/bin;
|
|
||||||
fi
|
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
|
||||||
curl -L -o /tmp/elm-format.tgz https://github.com/avh4/elm-format/releases/download/0.7.0-exp/elm-format-0.17-0.7.0-exp-linux-x64.tgz;
|
|
||||||
tar xvzf /tmp/elm-format.tgz -C $HOME/.linuxbrew/bin;
|
|
||||||
fi
|
|
||||||
# OCaml
|
# OCaml
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
# - opam init --auto-setup
|
||||||
brew install ocaml;
|
|
||||||
brew install opam;
|
|
||||||
fi
|
|
||||||
- opam init --auto-setup
|
|
||||||
# Init environment variables for opam
|
# Init environment variables for opam
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
# - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||||
eval `opam config env`;
|
# eval `opam config env`;
|
||||||
fi
|
# fi
|
||||||
- opam install --yes ocp-indent
|
# - opam install --yes ocp-indent
|
||||||
# Crystal
|
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install crystal-lang; fi
|
|
||||||
# Bash
|
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
|
||||||
pip install --user beautysh;
|
|
||||||
else
|
|
||||||
pip install beautysh;
|
|
||||||
fi
|
|
||||||
# terraform
|
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
||||||
brew install terraform;
|
|
||||||
else
|
|
||||||
docker pull hashicorp/terraform;
|
|
||||||
fi
|
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
tap 'homebrew/php'
|
||||||
|
tap 'caskroom/versions'
|
||||||
|
brew 'uncrustify'
|
||||||
|
brew 'r'
|
||||||
|
brew 'composer'
|
||||||
|
brew 'opam'
|
||||||
|
brew 'crystal-lang'
|
||||||
|
brew 'terraform'
|
||||||
|
brew 'elm-format'
|
||||||
|
cask 'atom'
|
||||||
|
cask 'atom-beta'
|
|
@ -1,5 +1,8 @@
|
||||||
# Next
|
# Next
|
||||||
- Fixes [#1773](https://github.com/Glavin001/atom-beautify/issues/1773) and [#793](https://github.com/Glavin001/atom-beautify/issues/793). ruby-beautify with Rubocop now respects `Exclude` settings, and properly loads inherited config files (like `~/.rubocop.yml`)
|
- Fixes [#1773](https://github.com/Glavin001/atom-beautify/issues/1773) and [#793](https://github.com/Glavin001/atom-beautify/issues/793). ruby-beautify with Rubocop now respects `Exclude` settings, and properly loads inherited config files (like `~/.rubocop.yml`)
|
||||||
|
- Fix [#1862](https://github.com/Glavin001/atom-beautify/issues/1862) Add support for ocp-indent as an executable
|
||||||
|
- See [#601](https://github.com/Glavin001/atom-beautify/issues/1862) Add support for tsx files
|
||||||
|
- See [#1497](https://github.com/Glavin001/atom-beautify/issues/1497) and [#802](https://github.com/Glavin001/atom-beautify/issues/802)
|
||||||
- ...
|
- ...
|
||||||
|
|
||||||
# v0.30.9 (2017-11-22)
|
# v0.30.9 (2017-11-22)
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
source "https://rubygems.org"
|
||||||
|
|
||||||
|
gem "rubocop"
|
||||||
|
gem "htmlbeautifier"
|
||||||
|
gem "puppet-lint"
|
||||||
|
gem "sass"
|
|
@ -6,6 +6,11 @@
|
||||||
[![Gitter](https://img.shields.io/gitter/room/Glavin001/atom-beautify.svg?style=flat-square)](https://gitter.im/Glavin001/atom-beautify)
|
[![Gitter](https://img.shields.io/gitter/room/Glavin001/atom-beautify.svg?style=flat-square)](https://gitter.im/Glavin001/atom-beautify)
|
||||||
[![Bountysource](https://img.shields.io/bountysource/team/atom-beautify/activity.svg?style=flat-square)](https://www.bountysource.com/teams/atom-beautify)
|
[![Bountysource](https://img.shields.io/bountysource/team/atom-beautify/activity.svg?style=flat-square)](https://www.bountysource.com/teams/atom-beautify)
|
||||||
[![Paypal Donations](https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=X2RK5DKN6YXPJ&lc=CA&item_name=Atom%2dBeautify&item_number=atom%2dbeautify¤cy_code=CAD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted)
|
[![Paypal Donations](https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=X2RK5DKN6YXPJ&lc=CA&item_name=Atom%2dBeautify&item_number=atom%2dbeautify¤cy_code=CAD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted)
|
||||||
|
[![Twitter URL](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/unibeautify)
|
||||||
|
|
||||||
|
**Sign up for Unibeautify CI: [https://goo.gl/jmM4QN](https://goo.gl/jmM4QN)**
|
||||||
|
|
||||||
|
**Help improve Atom-Beautify by completing the quick questionnaire: [https://goo.gl/iEHBNr](https://goo.gl/iEHBNr)**
|
||||||
|
|
||||||
| Mac OS <img src="https://cloud.githubusercontent.com/assets/1885333/17059766/2530c9d8-4ffd-11e6-9529-3fa47dbff616.png" width="50px"> and <img src="https://cloud.githubusercontent.com/assets/1885333/17059750/11c4474e-4ffd-11e6-89e1-2486ca5b3234.png" width="100px"> | <img src="https://cloud.githubusercontent.com/assets/1885333/17059763/206a7d4a-4ffd-11e6-859e-7856902fb300.png" width="100px"> |
|
| Mac OS <img src="https://cloud.githubusercontent.com/assets/1885333/17059766/2530c9d8-4ffd-11e6-9529-3fa47dbff616.png" width="50px"> and <img src="https://cloud.githubusercontent.com/assets/1885333/17059750/11c4474e-4ffd-11e6-89e1-2486ca5b3234.png" width="100px"> | <img src="https://cloud.githubusercontent.com/assets/1885333/17059763/206a7d4a-4ffd-11e6-859e-7856902fb300.png" width="100px"> |
|
||||||
| --- | --- |
|
| --- | --- |
|
||||||
|
@ -65,6 +70,18 @@ Thank you.
|
||||||
Atom-Beautify is going to be completely rewritten with [Unibeautify](https://github.com/Unibeautify/unibeautify) at its core!
|
Atom-Beautify is going to be completely rewritten with [Unibeautify](https://github.com/Unibeautify/unibeautify) at its core!
|
||||||
See [`unibeautify` branch](../../tree/unibeautify) for work in progress and [Issue #1174](https://github.com/Glavin001/atom-beautify/issues/1174).
|
See [`unibeautify` branch](../../tree/unibeautify) for work in progress and [Issue #1174](https://github.com/Glavin001/atom-beautify/issues/1174).
|
||||||
|
|
||||||
|
### Poll: Improving installation of third-party beautifiers
|
||||||
|
|
||||||
|
Many users are experiencing issues when installing third party beautifiers (e.g. Uncrustify, PHP-CS-Fixer, and many more).
|
||||||
|
A possible solution is a "cloud" service which provides remote access to these beautifiers. Atom-Beautify would then communicate with these services, allowing for zero-installation beautification.
|
||||||
|
|
||||||
|
Please let us know what you think!
|
||||||
|
|
||||||
|
[![](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/Yes%2C%20cloud%20solution%20would%20be%20great!)](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/Yes%2C%20cloud%20solution%20would%20be%20great!/vote)
|
||||||
|
[![](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/No%2C%20I%20enjoy%20manually%20installing%20beautifiers)](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/No%2C%20I%20enjoy%20manually%20installing%20beautifiers/vote)
|
||||||
|
[![](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/No%2C%20I%20am%20happy%20using%20Docker)](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/No%2C%20I%20am%20happy%20using%20Docker/vote)
|
||||||
|
[![](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/No%2C%20I%20do%20not%20want%20to%20send%20me%20code%20over%20the%20Internet)](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/No%2C%20I%20do%20not%20want%20to%20send%20me%20code%20over%20the%20Internet/vote)
|
||||||
|
|
||||||
## Beautifiers
|
## Beautifiers
|
||||||
|
|
||||||
Some of the supported beautifiers are developed for Node.js and are automatically installed when Atom-Beautify is installed. However, other beautifiers are command-line interface (CLI) applications and require you to manually install them.
|
Some of the supported beautifiers are developed for Node.js and are automatically installed when Atom-Beautify is installed. However, other beautifiers are command-line interface (CLI) applications and require you to manually install them.
|
||||||
|
|
39
README.md
39
README.md
|
@ -6,6 +6,11 @@
|
||||||
[![Gitter](https://img.shields.io/gitter/room/Glavin001/atom-beautify.svg?style=flat-square)](https://gitter.im/Glavin001/atom-beautify)
|
[![Gitter](https://img.shields.io/gitter/room/Glavin001/atom-beautify.svg?style=flat-square)](https://gitter.im/Glavin001/atom-beautify)
|
||||||
[![Bountysource](https://img.shields.io/bountysource/team/atom-beautify/activity.svg?style=flat-square)](https://www.bountysource.com/teams/atom-beautify)
|
[![Bountysource](https://img.shields.io/bountysource/team/atom-beautify/activity.svg?style=flat-square)](https://www.bountysource.com/teams/atom-beautify)
|
||||||
[![Paypal Donations](https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=X2RK5DKN6YXPJ&lc=CA&item_name=Atom%2dBeautify&item_number=atom%2dbeautify¤cy_code=CAD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted)
|
[![Paypal Donations](https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=X2RK5DKN6YXPJ&lc=CA&item_name=Atom%2dBeautify&item_number=atom%2dbeautify¤cy_code=CAD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted)
|
||||||
|
[![Twitter URL](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/unibeautify)
|
||||||
|
|
||||||
|
**Sign up for Unibeautify CI: [https://goo.gl/jmM4QN](https://goo.gl/jmM4QN)**
|
||||||
|
|
||||||
|
**Help improve Atom-Beautify by completing the quick questionnaire: [https://goo.gl/iEHBNr](https://goo.gl/iEHBNr)**
|
||||||
|
|
||||||
| Mac OS <img src="https://cloud.githubusercontent.com/assets/1885333/17059766/2530c9d8-4ffd-11e6-9529-3fa47dbff616.png" width="50px"> and <img src="https://cloud.githubusercontent.com/assets/1885333/17059750/11c4474e-4ffd-11e6-89e1-2486ca5b3234.png" width="100px"> | <img src="https://cloud.githubusercontent.com/assets/1885333/17059763/206a7d4a-4ffd-11e6-859e-7856902fb300.png" width="100px"> |
|
| Mac OS <img src="https://cloud.githubusercontent.com/assets/1885333/17059766/2530c9d8-4ffd-11e6-9529-3fa47dbff616.png" width="50px"> and <img src="https://cloud.githubusercontent.com/assets/1885333/17059750/11c4474e-4ffd-11e6-89e1-2486ca5b3234.png" width="100px"> | <img src="https://cloud.githubusercontent.com/assets/1885333/17059763/206a7d4a-4ffd-11e6-859e-7856902fb300.png" width="100px"> |
|
||||||
| --- | --- |
|
| --- | --- |
|
||||||
|
@ -65,6 +70,18 @@ Thank you.
|
||||||
Atom-Beautify is going to be completely rewritten with [Unibeautify](https://github.com/Unibeautify/unibeautify) at its core!
|
Atom-Beautify is going to be completely rewritten with [Unibeautify](https://github.com/Unibeautify/unibeautify) at its core!
|
||||||
See [`unibeautify` branch](../../tree/unibeautify) for work in progress and [Issue #1174](https://github.com/Glavin001/atom-beautify/issues/1174).
|
See [`unibeautify` branch](../../tree/unibeautify) for work in progress and [Issue #1174](https://github.com/Glavin001/atom-beautify/issues/1174).
|
||||||
|
|
||||||
|
### Poll: Improving installation of third-party beautifiers
|
||||||
|
|
||||||
|
Many users are experiencing issues when installing third party beautifiers (e.g. Uncrustify, PHP-CS-Fixer, and many more).
|
||||||
|
A possible solution is a "cloud" service which provides remote access to these beautifiers. Atom-Beautify would then communicate with these services, allowing for zero-installation beautification.
|
||||||
|
|
||||||
|
Please let us know what you think!
|
||||||
|
|
||||||
|
[![](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/Yes%2C%20cloud%20solution%20would%20be%20great!)](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/Yes%2C%20cloud%20solution%20would%20be%20great!/vote)
|
||||||
|
[![](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/No%2C%20I%20enjoy%20manually%20installing%20beautifiers)](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/No%2C%20I%20enjoy%20manually%20installing%20beautifiers/vote)
|
||||||
|
[![](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/No%2C%20I%20am%20happy%20using%20Docker)](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/No%2C%20I%20am%20happy%20using%20Docker/vote)
|
||||||
|
[![](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/No%2C%20I%20do%20not%20want%20to%20send%20me%20code%20over%20the%20Internet)](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/No%2C%20I%20do%20not%20want%20to%20send%20me%20code%20over%20the%20Internet/vote)
|
||||||
|
|
||||||
## Beautifiers
|
## Beautifiers
|
||||||
|
|
||||||
Some of the supported beautifiers are developed for Node.js and are automatically installed when Atom-Beautify is installed. However, other beautifiers are command-line interface (CLI) applications and require you to manually install them.
|
Some of the supported beautifiers are developed for Node.js and are automatically installed when Atom-Beautify is installed. However, other beautifiers are command-line interface (CLI) applications and require you to manually install them.
|
||||||
|
@ -97,13 +114,14 @@ Some of the supported beautifiers are developed for Node.js and are automaticall
|
||||||
| Lua beautifier | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
| Lua beautifier | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||||
| Marko Beautifier | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
| Marko Beautifier | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||||
| Nginx Beautify | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
| Nginx Beautify | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||||
| ocp-indent | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://www.typerex.org/ocp-indent.html and follow the instructions. |
|
| ocp-indent | :warning: 1 executable | :white_check_mark: :100:% of executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [ocp-indent (`ocp-indent`)](https://www.typerex.org/ocp-indent.html) with `docker pull unibeautify/ocp-indent`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [ocp-indent (`ocp-indent`)](https://www.typerex.org/ocp-indent.html) by following https://www.typerex.org/ocp-indent.html#installation<br/> |
|
||||||
| Perltidy | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to http://perltidy.sourceforge.net/ and follow the instructions. |
|
| Perltidy | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to http://perltidy.sourceforge.net/ and follow the instructions. |
|
||||||
| PHP-CS-Fixer | :warning: 2 executables | :warning: Only 1 of 2 executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [PHP-CS-Fixer (`php-cs-fixer`)](https://github.com/FriendsOfPHP/PHP-CS-Fixer) with `docker pull unibeautify/php-cs-fixer`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [PHP (`php`)](http://php.net/) by following http://php.net/manual/en/install.php<br/>2. Install [PHP-CS-Fixer (`php-cs-fixer`)](https://github.com/FriendsOfPHP/PHP-CS-Fixer) by following https://github.com/FriendsOfPHP/PHP-CS-Fixer#installation<br/> |
|
| PHP-CS-Fixer | :warning: 2 executables | :warning: Only 1 of 2 executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [PHP-CS-Fixer (`php-cs-fixer`)](https://github.com/FriendsOfPHP/PHP-CS-Fixer) with `docker pull unibeautify/php-cs-fixer`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [PHP (`php`)](http://php.net/) by following http://php.net/manual/en/install.php<br/>2. Install [PHP-CS-Fixer (`php-cs-fixer`)](https://github.com/FriendsOfPHP/PHP-CS-Fixer) by following https://github.com/FriendsOfPHP/PHP-CS-Fixer#installation<br/> |
|
||||||
| PHPCBF | :warning: 2 executables | :warning: Only 1 of 2 executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [PHPCBF (`phpcbf`)](https://github.com/squizlabs/PHP_CodeSniffer) with `docker pull unibeautify/phpcbf`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [PHP (`php`)](http://php.net/) by following http://php.net/manual/en/install.php<br/>2. Install [PHPCBF (`phpcbf`)](https://github.com/squizlabs/PHP_CodeSniffer) by following https://github.com/squizlabs/PHP_CodeSniffer#installation<br/> |
|
| PHPCBF | :warning: 2 executables | :warning: Only 1 of 2 executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [PHPCBF (`phpcbf`)](https://github.com/squizlabs/PHP_CodeSniffer) with `docker pull unibeautify/phpcbf`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [PHP (`php`)](http://php.net/) by following http://php.net/manual/en/install.php<br/>2. Install [PHPCBF (`phpcbf`)](https://github.com/squizlabs/PHP_CodeSniffer) by following https://github.com/squizlabs/PHP_CodeSniffer#installation<br/> |
|
||||||
|
| Prettier | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||||
| Pretty Diff | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
| Pretty Diff | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||||
| Pug Beautify | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
| Pug Beautify | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||||
| puppet-lint | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to http://puppet-lint.com/ and follow the instructions. |
|
| puppet-lint | :warning: 1 executable | :white_check_mark: :100:% of executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [puppet-lint (`puppet-lint`)](http://puppet-lint.com/) with `docker pull unibeautify/puppet-lint`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [puppet-lint (`puppet-lint`)](http://puppet-lint.com/) by following http://puppet-lint.com/<br/> |
|
||||||
| pybeautifier | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/guyskk/pybeautifier and follow the instructions. |
|
| pybeautifier | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/guyskk/pybeautifier and follow the instructions. |
|
||||||
| Remark | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
| Remark | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||||
| Rubocop | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/bbatsov/rubocop and follow the instructions. |
|
| Rubocop | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/bbatsov/rubocop and follow the instructions. |
|
||||||
|
@ -135,7 +153,7 @@ See [all supported options in the documentation at `docs/options.md`](docs/opti
|
||||||
| C++ | `C++` |`.h`, `.hh`, `.cc`, `.cpp`, `.cxx`, `.C`, `.cu`, `.c++`, `.hpp`, `.hxx`, `.h++`, `.cuh` | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)**, [`clang-format`](https://clang.llvm.org/docs/ClangFormat.html) |
|
| C++ | `C++` |`.h`, `.hh`, `.cc`, `.cpp`, `.cxx`, `.C`, `.cu`, `.c++`, `.hpp`, `.hxx`, `.h++`, `.cuh` | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)**, [`clang-format`](https://clang.llvm.org/docs/ClangFormat.html) |
|
||||||
| Crystal | `Crystal` |`.cr` | **[`Crystal`](http://crystal-lang.org)** |
|
| Crystal | `Crystal` |`.cr` | **[`Crystal`](http://crystal-lang.org)** |
|
||||||
| C# | `C#` |`.cs` | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)** |
|
| C# | `C#` |`.cs` | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)** |
|
||||||
| CSS | `CSS` |`.css` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)**, [`CSScomb`](https://github.com/csscomb/csscomb.js), [`Pretty Diff`](https://github.com/prettydiff/prettydiff), [`SassConvert`](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax) |
|
| CSS | `CSS` |`.css` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)**, [`CSScomb`](https://github.com/csscomb/csscomb.js), [`Prettier`](https://github.com/prettier/prettier), [`Pretty Diff`](https://github.com/prettydiff/prettydiff), [`SassConvert`](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax) |
|
||||||
| CSV | `CSV` |`.csv` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
| CSV | `CSV` |`.csv` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||||
| D | `D` |`.d` | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)**, [`dfmt`](https://github.com/Hackerpilot/dfmt) |
|
| D | `D` |`.d` | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)**, [`dfmt`](https://github.com/Hackerpilot/dfmt) |
|
||||||
| EJS | `EJS`, `JavaScript Template`, `HTML (Angular)` |`.ejs` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)**, [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
| EJS | `EJS`, `JavaScript Template`, `HTML (Angular)` |`.ejs` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)**, [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
||||||
|
@ -152,13 +170,13 @@ See [all supported options in the documentation at `docs/options.md`](docs/opti
|
||||||
| HTML | `HTML` |`.html` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)**, [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
| HTML | `HTML` |`.html` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)**, [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
||||||
| Jade | `Jade`, `Pug` |`.jade`, `.pug` | **[`Pug Beautify`](https://github.com/vingorius/pug-beautify)** |
|
| Jade | `Jade`, `Pug` |`.jade`, `.pug` | **[`Pug Beautify`](https://github.com/vingorius/pug-beautify)** |
|
||||||
| Java | `Java` |`.java` | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)** |
|
| Java | `Java` |`.java` | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)** |
|
||||||
| JavaScript | `JavaScript` |`.js` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)**, [`ESLint Fixer`](https://github.com/eslint/eslint), [`JSCS Fixer`](https://github.com/jscs-dev/node-jscs/), [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
| JavaScript | `JavaScript` |`.js` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)**, [`ESLint Fixer`](https://github.com/eslint/eslint), [`JSCS Fixer`](https://github.com/jscs-dev/node-jscs/), [`Prettier`](https://github.com/prettier/prettier), [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
||||||
| JSON | `JSON` |`.json` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)**, [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
| JSON | `JSON` |`.json` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)**, [`Prettier`](https://github.com/prettier/prettier), [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
||||||
| JSX | `JSX`, `JavaScript (JSX)`, `Babel ES6 JavaScript`, `JavaScript with JSX` |`.jsx`, `.js` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)**, [`JS Beautify`](https://github.com/beautify-web/js-beautify) |
|
| JSX | `JSX`, `JavaScript (JSX)`, `Babel ES6 JavaScript`, `JavaScript with JSX` |`.jsx`, `.js` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)**, [`JS Beautify`](https://github.com/beautify-web/js-beautify) |
|
||||||
| LaTeX | `BibTeX`, `LaTeX`, `TeX` |`.bib`, `.tex`, `.sty`, `.cls`, `.dtx`, `.ins`, `.bbx`, `.cbx` | **[`Latex Beautify`](https://github.com/cmhughes/latexindent.pl)** |
|
| LaTeX | `BibTeX`, `LaTeX`, `TeX` |`.bib`, `.tex`, `.sty`, `.cls`, `.dtx`, `.ins`, `.bbx`, `.cbx` | **[`Latex Beautify`](https://github.com/cmhughes/latexindent.pl)** |
|
||||||
| LESS | `LESS` |`.less` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)**, [`CSScomb`](https://github.com/csscomb/csscomb.js) |
|
| LESS | `LESS` |`.less` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)**, [`CSScomb`](https://github.com/csscomb/csscomb.js), [`Prettier`](https://github.com/prettier/prettier) |
|
||||||
| Lua | `Lua` |`.lua`, `.ttslua` | **[`Lua beautifier`](https://github.com/Glavin001/atom-beautify/blob/master/src/beautifiers/lua-beautifier/beautifier.coffee)** |
|
| Lua | `Lua` |`.lua`, `.ttslua` | **[`Lua beautifier`](https://github.com/Glavin001/atom-beautify/blob/master/src/beautifiers/lua-beautifier/beautifier.coffee)** |
|
||||||
| Markdown | `GitHub Markdown` |`.markdown`, `.md` | **[`Tidy Markdown`](https://github.com/slang800/tidy-markdown)**, [`Remark`](https://github.com/wooorm/remark) |
|
| Markdown | `GitHub Markdown` |`.markdown`, `.md` | **[`Tidy Markdown`](https://github.com/slang800/tidy-markdown)**, [`Prettier`](https://github.com/prettier/prettier), [`Remark`](https://github.com/wooorm/remark) |
|
||||||
| Marko | `Marko` |`.marko` | **[`Marko Beautifier`](https://github.com/marko-js/marko-prettyprint)** |
|
| Marko | `Marko` |`.marko` | **[`Marko Beautifier`](https://github.com/marko-js/marko-prettyprint)** |
|
||||||
| Mustache | `HTML (Mustache)` |`.mustache` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)**, [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
| Mustache | `HTML (Mustache)` |`.mustache` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)**, [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
||||||
| Nginx | `nginx` |`.conf` | **[`Nginx Beautify`](https://github.com/denysvitali/nginxbeautify)** |
|
| Nginx | `nginx` |`.conf` | **[`Nginx Beautify`](https://github.com/denysvitali/nginxbeautify)** |
|
||||||
|
@ -175,19 +193,20 @@ See [all supported options in the documentation at `docs/options.md`](docs/opti
|
||||||
| Ruby | `Ruby`, `Ruby on Rails` |`.rb` | **[`Rubocop`](https://github.com/bbatsov/rubocop)**, [`Ruby Beautify`](https://github.com/erniebrodeur/ruby-beautify) |
|
| Ruby | `Ruby`, `Ruby on Rails` |`.rb` | **[`Rubocop`](https://github.com/bbatsov/rubocop)**, [`Ruby Beautify`](https://github.com/erniebrodeur/ruby-beautify) |
|
||||||
| Rust | `Rust` |`.rs`, `.rlib` | **[`rustfmt`](https://github.com/rust-lang-nursery/rustfmt)** |
|
| Rust | `Rust` |`.rs`, `.rlib` | **[`rustfmt`](https://github.com/rust-lang-nursery/rustfmt)** |
|
||||||
| Sass | `Sass` |`.sass` | **[`SassConvert`](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax)** |
|
| Sass | `Sass` |`.sass` | **[`SassConvert`](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax)** |
|
||||||
| SCSS | `SCSS` |`.scss` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)**, [`CSScomb`](https://github.com/csscomb/csscomb.js), [`SassConvert`](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax) |
|
| SCSS | `SCSS` |`.scss` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)**, [`CSScomb`](https://github.com/csscomb/csscomb.js), [`Prettier`](https://github.com/prettier/prettier), [`SassConvert`](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax) |
|
||||||
| Spacebars | `Spacebars` | | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
| Spacebars | `Spacebars` | | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||||
| SQL | `SQL (Rails)`, `SQL` |`.sql` | **[`sqlformat`](https://github.com/andialbrecht/sqlparse)** |
|
| SQL | `SQL (Rails)`, `SQL` |`.sql` | **[`sqlformat`](https://github.com/andialbrecht/sqlparse)** |
|
||||||
| SVG | `SVG` |`.svg` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
| SVG | `SVG` |`.svg` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||||
| Swig | `HTML (Swig)`, `SWIG` |`.swig` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
| Swig | `HTML (Swig)`, `SWIG` |`.swig` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||||
| Terraform | `Terraform` |`.tf` | **[`terraformfmt`](https://www.terraform.io/docs/commands/fmt.html)** |
|
| Terraform | `Terraform` |`.tf` | **[`terraformfmt`](https://www.terraform.io/docs/commands/fmt.html)** |
|
||||||
| TSS | `TSS` |`.tss` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
| TSS | `TSS` |`.tss` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||||
|
| TSX | `TypeScriptReact` |`.tsx` | **[`TypeScript Formatter`](https://github.com/vvakame/typescript-formatter)** |
|
||||||
| Twig | `HTML (Twig)` |`.twig` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
| Twig | `HTML (Twig)` |`.twig` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||||
| TypeScript | `TypeScript` |`.ts` | **[`TypeScript Formatter`](https://github.com/vvakame/typescript-formatter)** |
|
| TypeScript | `TypeScript` |`.ts` | **[`TypeScript Formatter`](https://github.com/vvakame/typescript-formatter)**, [`Prettier`](https://github.com/prettier/prettier) |
|
||||||
| UX Markup | `UX` |`.ux` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
| UX Markup | `UX` |`.ux` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||||
| Vala | `Vala` |`.vala`, `.vapi` | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)** |
|
| Vala | `Vala` |`.vala`, `.vapi` | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)** |
|
||||||
| Visualforce | `Visualforce` |`.page` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
| Visualforce | `Visualforce` |`.page` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||||
| Vue | `Vue Component` |`.vue` | **[`Vue Beautifier`](https://github.com/Glavin001/atom-beautify/blob/master/src/beautifiers/vue-beautifier.coffee)** |
|
| Vue | `Vue Component` |`.vue` | **[`Vue Beautifier`](https://github.com/Glavin001/atom-beautify/blob/master/src/beautifiers/vue-beautifier.coffee)**, [`Prettier`](https://github.com/prettier/prettier) |
|
||||||
| XML | `SLD`, `XML`, `XHTML`, `XSD`, `XSL`, `JSP`, `GSP` |`.sld`, `.xml`, `.xhtml`, `.xsd`, `.xsl`, `.jsp`, `.gsp`, `.plist`, `.recipe`, `.config` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)**, [`JS Beautify`](https://github.com/beautify-web/js-beautify) |
|
| XML | `SLD`, `XML`, `XHTML`, `XSD`, `XSL`, `JSP`, `GSP` |`.sld`, `.xml`, `.xhtml`, `.xsd`, `.xsl`, `.jsp`, `.gsp`, `.plist`, `.recipe`, `.config` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)**, [`JS Beautify`](https://github.com/beautify-web/js-beautify) |
|
||||||
| XTemplate | `XTemplate` |`.xtemplate` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
| XTemplate | `XTemplate` |`.xtemplate` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||||
| YAML | `YAML` |`.yml`, `.yaml` | **[`align-yaml`](https://github.com/jonschlinkert/align-yaml)** |
|
| YAML | `YAML` |`.yml`, `.yaml` | **[`align-yaml`](https://github.com/jonschlinkert/align-yaml)** |
|
||||||
|
|
121
appveyor.yml
121
appveyor.yml
|
@ -10,136 +10,35 @@ environment:
|
||||||
# /E:ON and /V:ON options are not enabled in the batch script intepreter
|
# /E:ON and /V:ON options are not enabled in the batch script intepreter
|
||||||
# See: http://stackoverflow.com/a/13751649/163740
|
# See: http://stackoverflow.com/a/13751649/163740
|
||||||
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_env.cmd"
|
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_env.cmd"
|
||||||
|
PATH: C:\Ruby23\bin;C:\Ruby23-x64\DevKit\mingw\bin;C:\Python27;C:\Python27\Scripts;%PATH%
|
||||||
matrix:
|
|
||||||
- PYTHON: "C:\\Python27"
|
|
||||||
PYTHON_VERSION: "2.7.8"
|
|
||||||
PYTHON_ARCH: "32"
|
|
||||||
RUBY_VERSION: 23
|
|
||||||
|
|
||||||
# - PYTHON: "C:\\Python27-x64"
|
|
||||||
# PYTHON_VERSION: "2.7.8"
|
|
||||||
# PYTHON_ARCH: "64"
|
|
||||||
#
|
|
||||||
# - PYTHON: "C:\\Python33"
|
|
||||||
# PYTHON_VERSION: "3.3.5"
|
|
||||||
# PYTHON_ARCH: "32"
|
|
||||||
#
|
|
||||||
# - PYTHON: "C:\\Python33-x64"
|
|
||||||
# PYTHON_VERSION: "3.3.5"
|
|
||||||
# PYTHON_ARCH: "64"
|
|
||||||
#
|
|
||||||
# - PYTHON: "C:\\Python34"
|
|
||||||
# PYTHON_VERSION: "3.4.1"
|
|
||||||
# PYTHON_ARCH: "32"
|
|
||||||
#
|
|
||||||
# - PYTHON: "C:\\Python34-x64"
|
|
||||||
# PYTHON_VERSION: "3.4.1"
|
|
||||||
# PYTHON_ARCH: "64"
|
|
||||||
|
|
||||||
init:
|
init:
|
||||||
- cmd: rd /s /q %CHOCOLATEYINSTALL%
|
- cmd: rd /s /q %CHOCOLATEYINSTALL%
|
||||||
- ps: iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
|
- ps: iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
|
||||||
|
|
||||||
install:
|
install:
|
||||||
|
- cinst packages.config -y
|
||||||
- ECHO "Filesystem root:"
|
- refreshenv
|
||||||
- ps: "ls \"C:/\""
|
|
||||||
|
|
||||||
- cinst atom -y
|
|
||||||
- cd %APPVEYOR_BUILD_FOLDER%
|
|
||||||
# Add Atom's bin (apm, etc) to PATH
|
|
||||||
- SET PATH=%LOCALAPPDATA%\atom\bin;%PATH%
|
|
||||||
- apm install
|
- apm install
|
||||||
|
|
||||||
# Install CLI beautifiers
|
# https://packaging.python.org/guides/supporting-windows-using-appveyor/
|
||||||
|
- pip install -r requirements.txt
|
||||||
|
|
||||||
# Install Python (from the official .msi of http://python.org) and pip when
|
# Gemfile Install
|
||||||
# not already installed.
|
- bundle install
|
||||||
- "powershell ./appveyor/install.ps1"
|
|
||||||
|
|
||||||
# Prepend newly installed Python to the PATH of this build (this cannot be
|
|
||||||
# done from inside the powershell script as it would require to restart
|
|
||||||
# the parent CMD process).
|
|
||||||
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
|
|
||||||
|
|
||||||
# Check that we have the expected version and architecture for Python
|
|
||||||
- "python --version"
|
|
||||||
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
|
|
||||||
|
|
||||||
# Install the build dependencies of the project. If some dependencies contain
|
|
||||||
# compiled extensions and are not provided as pre-built wheel packages,
|
|
||||||
# pip will build them from source using the MSVC compiler matching the
|
|
||||||
# target Python version and architecture
|
|
||||||
- "%CMD_IN_ENV% pip install --upgrade autopep8"
|
|
||||||
- where autopep8
|
|
||||||
|
|
||||||
- "%CMD_IN_ENV% pip install --upgrade isort"
|
|
||||||
- where isort
|
|
||||||
|
|
||||||
- "%CMD_IN_ENV% pip install --upgrade sqlparse"
|
|
||||||
|
|
||||||
# Ruby & Gem
|
|
||||||
- SET PATH=C:\Ruby%RUBY_VERSION%\bin;C:\Ruby23-x64\DevKit\mingw\bin;%PATH%
|
|
||||||
# Rubocop
|
|
||||||
- gem install rubocop
|
|
||||||
- where rubocop
|
|
||||||
# HTMLBeautifier
|
|
||||||
- gem install htmlbeautifier
|
|
||||||
- where htmlbeautifier
|
|
||||||
# Puppet-Lint
|
|
||||||
- gem install puppet-lint
|
|
||||||
- where puppet-lint
|
|
||||||
# Sass
|
|
||||||
- gem install sass
|
|
||||||
- where sass-convert
|
|
||||||
|
|
||||||
# emacs
|
|
||||||
- cinst emacs -y
|
|
||||||
- where emacs
|
|
||||||
|
|
||||||
# terraform
|
|
||||||
- cinst terraform -y
|
|
||||||
- where terraform
|
|
||||||
|
|
||||||
# FIXME: Enable allowEmptyChecksums, until someone fixes the checksum issue of php
|
|
||||||
- choco feature enable -n allowEmptyChecksums
|
|
||||||
# PHP
|
# PHP
|
||||||
- ps: Set-Service wuauserv -StartupType Manual
|
- ps: Set-Service wuauserv -StartupType Manual
|
||||||
- cinst php -y
|
|
||||||
- ps: "ls \"C:\\tools\\php71\""
|
|
||||||
- "SET PATH=C:\\tools\\php71;%PATH%"
|
|
||||||
- where php
|
|
||||||
# PHP-CS-Fixer
|
# PHP-CS-Fixer
|
||||||
- cinst curl -y # Use cURL to download file from URL
|
- composer install
|
||||||
- curl http://get.sensiolabs.org/php-cs-fixer.phar -o php-cs-fixer
|
|
||||||
- "SET PATH=%cd%;%PATH%" # Add current working directory to PATH
|
|
||||||
- where php-cs-fixer
|
|
||||||
|
|
||||||
# Uncrustify
|
|
||||||
- curl -k -L https://sourceforge.net/projects/uncrustify/files/uncrustify/uncrustify-0.65/uncrustify-0.65-win32.zip/download -o uncrustify.zip
|
|
||||||
- cinst 7zip.commandline -y
|
|
||||||
- 7za e uncrustify.zip -ouncrustify-d
|
|
||||||
- "SET PATH=%cd%\\uncrustify-d;%PATH%"
|
|
||||||
- where uncrustify
|
|
||||||
|
|
||||||
# elm-format
|
# elm-format
|
||||||
- curl -k -L https://github.com/avh4/elm-format/releases/download/0.7.0-exp/elm-format-0.18-0.7.0-exp-win-i386.zip -o elm-format.zip
|
- npm install -g elm-format@exp
|
||||||
- 7za e elm-format.zip -oelm-format-d
|
|
||||||
- "SET PATH=%cd%\\elm-format-d;%PATH%"
|
|
||||||
- where elm-format
|
|
||||||
|
|
||||||
# Beautysh
|
|
||||||
- pip install beautysh
|
|
||||||
- where beautysh
|
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
|
|
||||||
- cd %APPVEYOR_BUILD_FOLDER%
|
|
||||||
# Install languages to Atom
|
# Install languages to Atom
|
||||||
- apm install language-marko language-html-swig language-svg language-elm language-d mavensmate-atom language-lua language-puppet fuse
|
- apm install --packages-file atom-packages.txt
|
||||||
# Show current PATH
|
|
||||||
- echo %PATH%
|
|
||||||
# Run tests on package
|
# Run tests on package
|
||||||
#- "%LOCALAPPDATA%\\atom\\bin\\atom.cmd --test spec"
|
#- "%LOCALAPPDATA%\\atom\\bin\\atom.cmd --test spec"
|
||||||
- apm test --path %LOCALAPPDATA%/atom/bin/atom.cmd
|
- apm test --path %LOCALAPPDATA%/atom/bin/atom.cmd
|
||||||
|
|
|
@ -1,180 +0,0 @@
|
||||||
# Sample script to install Python and pip under Windows
|
|
||||||
# Authors: Olivier Grisel, Jonathan Helmus and Kyle Kastner
|
|
||||||
# License: CC0 1.0 Universal: http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
|
|
||||||
$MINICONDA_URL = "http://repo.continuum.io/miniconda/"
|
|
||||||
$BASE_URL = "https://www.python.org/ftp/python/"
|
|
||||||
$GET_PIP_URL = "https://bootstrap.pypa.io/get-pip.py"
|
|
||||||
$GET_PIP_PATH = "C:\get-pip.py"
|
|
||||||
|
|
||||||
|
|
||||||
function DownloadPython ($python_version, $platform_suffix) {
|
|
||||||
$webclient = New-Object System.Net.WebClient
|
|
||||||
$filename = "python-" + $python_version + $platform_suffix + ".msi"
|
|
||||||
$url = $BASE_URL + $python_version + "/" + $filename
|
|
||||||
|
|
||||||
$basedir = $pwd.Path + "\"
|
|
||||||
$filepath = $basedir + $filename
|
|
||||||
if (Test-Path $filename) {
|
|
||||||
Write-Host "Reusing" $filepath
|
|
||||||
return $filepath
|
|
||||||
}
|
|
||||||
|
|
||||||
# Download and retry up to 3 times in case of network transient errors.
|
|
||||||
Write-Host "Downloading" $filename "from" $url
|
|
||||||
$retry_attempts = 2
|
|
||||||
for($i=0; $i -lt $retry_attempts; $i++){
|
|
||||||
try {
|
|
||||||
$webclient.DownloadFile($url, $filepath)
|
|
||||||
break
|
|
||||||
}
|
|
||||||
Catch [Exception]{
|
|
||||||
Start-Sleep 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (Test-Path $filepath) {
|
|
||||||
Write-Host "File saved at" $filepath
|
|
||||||
} else {
|
|
||||||
# Retry once to get the error message if any at the last try
|
|
||||||
$webclient.DownloadFile($url, $filepath)
|
|
||||||
}
|
|
||||||
return $filepath
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function InstallPython ($python_version, $architecture, $python_home) {
|
|
||||||
Write-Host "Installing Python" $python_version "for" $architecture "bit architecture to" $python_home
|
|
||||||
if (Test-Path $python_home) {
|
|
||||||
Write-Host $python_home "already exists, skipping."
|
|
||||||
return $false
|
|
||||||
}
|
|
||||||
if ($architecture -eq "32") {
|
|
||||||
$platform_suffix = ""
|
|
||||||
} else {
|
|
||||||
$platform_suffix = ".amd64"
|
|
||||||
}
|
|
||||||
$msipath = DownloadPython $python_version $platform_suffix
|
|
||||||
Write-Host "Installing" $msipath "to" $python_home
|
|
||||||
$install_log = $python_home + ".log"
|
|
||||||
$install_args = "/qn /log $install_log /i $msipath TARGETDIR=$python_home"
|
|
||||||
$uninstall_args = "/qn /x $msipath"
|
|
||||||
RunCommand "msiexec.exe" $install_args
|
|
||||||
if (-not(Test-Path $python_home)) {
|
|
||||||
Write-Host "Python seems to be installed else-where, reinstalling."
|
|
||||||
RunCommand "msiexec.exe" $uninstall_args
|
|
||||||
RunCommand "msiexec.exe" $install_args
|
|
||||||
}
|
|
||||||
if (Test-Path $python_home) {
|
|
||||||
Write-Host "Python $python_version ($architecture) installation complete"
|
|
||||||
} else {
|
|
||||||
Write-Host "Failed to install Python in $python_home"
|
|
||||||
Get-Content -Path $install_log
|
|
||||||
Exit 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function RunCommand ($command, $command_args) {
|
|
||||||
Write-Host $command $command_args
|
|
||||||
Start-Process -FilePath $command -ArgumentList $command_args -Wait -Passthru
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function InstallPip ($python_home) {
|
|
||||||
$pip_path = $python_home + "\Scripts\pip.exe"
|
|
||||||
$python_path = $python_home + "\python.exe"
|
|
||||||
if (-not(Test-Path $pip_path)) {
|
|
||||||
Write-Host "Installing pip..."
|
|
||||||
$webclient = New-Object System.Net.WebClient
|
|
||||||
$webclient.DownloadFile($GET_PIP_URL, $GET_PIP_PATH)
|
|
||||||
Write-Host "Executing:" $python_path $GET_PIP_PATH
|
|
||||||
Start-Process -FilePath "$python_path" -ArgumentList "$GET_PIP_PATH" -Wait -Passthru
|
|
||||||
} else {
|
|
||||||
Write-Host "pip already installed."
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function DownloadMiniconda ($python_version, $platform_suffix) {
|
|
||||||
$webclient = New-Object System.Net.WebClient
|
|
||||||
if ($python_version -eq "3.4") {
|
|
||||||
$filename = "Miniconda3-3.5.5-Windows-" + $platform_suffix + ".exe"
|
|
||||||
} else {
|
|
||||||
$filename = "Miniconda-3.5.5-Windows-" + $platform_suffix + ".exe"
|
|
||||||
}
|
|
||||||
$url = $MINICONDA_URL + $filename
|
|
||||||
|
|
||||||
$basedir = $pwd.Path + "\"
|
|
||||||
$filepath = $basedir + $filename
|
|
||||||
if (Test-Path $filename) {
|
|
||||||
Write-Host "Reusing" $filepath
|
|
||||||
return $filepath
|
|
||||||
}
|
|
||||||
|
|
||||||
# Download and retry up to 3 times in case of network transient errors.
|
|
||||||
Write-Host "Downloading" $filename "from" $url
|
|
||||||
$retry_attempts = 2
|
|
||||||
for($i=0; $i -lt $retry_attempts; $i++){
|
|
||||||
try {
|
|
||||||
$webclient.DownloadFile($url, $filepath)
|
|
||||||
break
|
|
||||||
}
|
|
||||||
Catch [Exception]{
|
|
||||||
Start-Sleep 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (Test-Path $filepath) {
|
|
||||||
Write-Host "File saved at" $filepath
|
|
||||||
} else {
|
|
||||||
# Retry once to get the error message if any at the last try
|
|
||||||
$webclient.DownloadFile($url, $filepath)
|
|
||||||
}
|
|
||||||
return $filepath
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function InstallMiniconda ($python_version, $architecture, $python_home) {
|
|
||||||
Write-Host "Installing Python" $python_version "for" $architecture "bit architecture to" $python_home
|
|
||||||
if (Test-Path $python_home) {
|
|
||||||
Write-Host $python_home "already exists, skipping."
|
|
||||||
return $false
|
|
||||||
}
|
|
||||||
if ($architecture -eq "32") {
|
|
||||||
$platform_suffix = "x86"
|
|
||||||
} else {
|
|
||||||
$platform_suffix = "x86_64"
|
|
||||||
}
|
|
||||||
$filepath = DownloadMiniconda $python_version $platform_suffix
|
|
||||||
Write-Host "Installing" $filepath "to" $python_home
|
|
||||||
$install_log = $python_home + ".log"
|
|
||||||
$args = "/S /D=$python_home"
|
|
||||||
Write-Host $filepath $args
|
|
||||||
Start-Process -FilePath $filepath -ArgumentList $args -Wait -Passthru
|
|
||||||
if (Test-Path $python_home) {
|
|
||||||
Write-Host "Python $python_version ($architecture) installation complete"
|
|
||||||
} else {
|
|
||||||
Write-Host "Failed to install Python in $python_home"
|
|
||||||
Get-Content -Path $install_log
|
|
||||||
Exit 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function InstallMinicondaPip ($python_home) {
|
|
||||||
$pip_path = $python_home + "\Scripts\pip.exe"
|
|
||||||
$conda_path = $python_home + "\Scripts\conda.exe"
|
|
||||||
if (-not(Test-Path $pip_path)) {
|
|
||||||
Write-Host "Installing pip..."
|
|
||||||
$args = "install --yes pip"
|
|
||||||
Write-Host $conda_path $args
|
|
||||||
Start-Process -FilePath "$conda_path" -ArgumentList $args -Wait -Passthru
|
|
||||||
} else {
|
|
||||||
Write-Host "pip already installed."
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function main () {
|
|
||||||
InstallPython $env:PYTHON_VERSION $env:PYTHON_ARCH $env:PYTHON
|
|
||||||
InstallPip $env:PYTHON
|
|
||||||
}
|
|
||||||
|
|
||||||
main
|
|
|
@ -1,47 +0,0 @@
|
||||||
:: To build extensions for 64 bit Python 3, we need to configure environment
|
|
||||||
:: variables to use the MSVC 2010 C++ compilers from GRMSDKX_EN_DVD.iso of:
|
|
||||||
:: MS Windows SDK for Windows 7 and .NET Framework 4 (SDK v7.1)
|
|
||||||
::
|
|
||||||
:: To build extensions for 64 bit Python 2, we need to configure environment
|
|
||||||
:: variables to use the MSVC 2008 C++ compilers from GRMSDKX_EN_DVD.iso of:
|
|
||||||
:: MS Windows SDK for Windows 7 and .NET Framework 3.5 (SDK v7.0)
|
|
||||||
::
|
|
||||||
:: 32 bit builds do not require specific environment configurations.
|
|
||||||
::
|
|
||||||
:: Note: this script needs to be run with the /E:ON and /V:ON flags for the
|
|
||||||
:: cmd interpreter, at least for (SDK v7.0)
|
|
||||||
::
|
|
||||||
:: More details at:
|
|
||||||
:: https://github.com/cython/cython/wiki/64BitCythonExtensionsOnWindows
|
|
||||||
:: http://stackoverflow.com/a/13751649/163740
|
|
||||||
::
|
|
||||||
:: Author: Olivier Grisel
|
|
||||||
:: License: CC0 1.0 Universal: http://creativecommons.org/publicdomain/zero/1.0/
|
|
||||||
@ECHO OFF
|
|
||||||
|
|
||||||
SET COMMAND_TO_RUN=%*
|
|
||||||
SET WIN_SDK_ROOT=C:\Program Files\Microsoft SDKs\Windows
|
|
||||||
|
|
||||||
SET MAJOR_PYTHON_VERSION="%PYTHON_VERSION:~0,1%"
|
|
||||||
IF %MAJOR_PYTHON_VERSION% == "2" (
|
|
||||||
SET WINDOWS_SDK_VERSION="v7.0"
|
|
||||||
) ELSE IF %MAJOR_PYTHON_VERSION% == "3" (
|
|
||||||
SET WINDOWS_SDK_VERSION="v7.1"
|
|
||||||
) ELSE (
|
|
||||||
ECHO Unsupported Python version: "%MAJOR_PYTHON_VERSION%"
|
|
||||||
EXIT 1
|
|
||||||
)
|
|
||||||
|
|
||||||
IF "%PYTHON_ARCH%"=="64" (
|
|
||||||
ECHO Configuring Windows SDK %WINDOWS_SDK_VERSION% for Python %MAJOR_PYTHON_VERSION% on a 64 bit architecture
|
|
||||||
SET DISTUTILS_USE_SDK=1
|
|
||||||
SET MSSdk=1
|
|
||||||
"%WIN_SDK_ROOT%\%WINDOWS_SDK_VERSION%\Setup\WindowsSdkVer.exe" -q -version:%WINDOWS_SDK_VERSION%
|
|
||||||
"%WIN_SDK_ROOT%\%WINDOWS_SDK_VERSION%\Bin\SetEnv.cmd" /x64 /release
|
|
||||||
ECHO Executing: %COMMAND_TO_RUN%
|
|
||||||
call %COMMAND_TO_RUN% || EXIT 1
|
|
||||||
) ELSE (
|
|
||||||
ECHO Using default MSVC build environment for 32 bit architecture
|
|
||||||
ECHO Executing: %COMMAND_TO_RUN%
|
|
||||||
call %COMMAND_TO_RUN% || EXIT 1
|
|
||||||
)
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
language-marko
|
||||||
|
language-html-swig
|
||||||
|
language-svg
|
||||||
|
language-d
|
||||||
|
mavensmate-atom
|
||||||
|
language-lua
|
||||||
|
language-elm
|
||||||
|
language-puppet
|
||||||
|
fuse
|
||||||
|
react
|
|
@ -1,63 +1,21 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
echo "Downloading latest Atom release..."
|
if [ "$TRAVIS_OS_NAME" != "osx" ]; then
|
||||||
ATOM_CHANNEL="${ATOM_CHANNEL:=stable}"
|
|
||||||
|
|
||||||
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
|
||||||
curl -s -L "https://atom.io/download/mac?channel=$ATOM_CHANNEL" \
|
|
||||||
-H 'Accept: application/octet-stream' \
|
|
||||||
-o "atom.zip"
|
|
||||||
mkdir atom
|
|
||||||
unzip -q atom.zip -d atom
|
|
||||||
if [ "$ATOM_CHANNEL" = "stable" ]; then
|
|
||||||
export ATOM_APP_NAME="Atom.app"
|
|
||||||
export ATOM_SCRIPT_NAME="atom.sh"
|
|
||||||
export ATOM_SCRIPT_PATH="./atom/${ATOM_APP_NAME}/Contents/Resources/app/atom.sh"
|
|
||||||
else
|
|
||||||
export ATOM_APP_NAME="Atom ${ATOM_CHANNEL}.app"
|
|
||||||
export ATOM_SCRIPT_NAME="atom-${ATOM_CHANNEL}"
|
|
||||||
export ATOM_SCRIPT_PATH="./atom-${ATOM_CHANNEL}"
|
|
||||||
ln -s "./atom/${ATOM_APP_NAME}/Contents/Resources/app/atom.sh" "${ATOM_SCRIPT_PATH}"
|
|
||||||
fi
|
|
||||||
export PATH="$PWD/atom/${ATOM_APP_NAME}/Contents/Resources/app/apm/bin:$PATH"
|
|
||||||
export ATOM_PATH="./atom"
|
|
||||||
export APM_SCRIPT_PATH="./atom/${ATOM_APP_NAME}/Contents/Resources/app/apm/node_modules/.bin/apm"
|
|
||||||
else
|
|
||||||
curl -s -L "https://atom.io/download/deb?channel=$ATOM_CHANNEL" \
|
|
||||||
-H 'Accept: application/octet-stream' \
|
|
||||||
-o "atom.deb"
|
|
||||||
/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16
|
/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16
|
||||||
export DISPLAY=":99"
|
export DISPLAY=":99"
|
||||||
dpkg-deb -x atom.deb "$HOME/atom"
|
|
||||||
if [ "$ATOM_CHANNEL" = "stable" ]; then
|
|
||||||
export ATOM_SCRIPT_NAME="atom"
|
|
||||||
export APM_SCRIPT_NAME="apm"
|
|
||||||
else
|
|
||||||
export ATOM_SCRIPT_NAME="atom-$ATOM_CHANNEL"
|
|
||||||
export APM_SCRIPT_NAME="apm-$ATOM_CHANNEL"
|
|
||||||
fi
|
|
||||||
export ATOM_SCRIPT_PATH="$HOME/atom/usr/bin/$ATOM_SCRIPT_NAME"
|
|
||||||
export APM_SCRIPT_PATH="$HOME/atom/usr/bin/$APM_SCRIPT_NAME"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
echo "Using Atom version:"
|
echo "Using Atom version:"
|
||||||
"$ATOM_SCRIPT_PATH" -v
|
"$ATOM_SCRIPT_NAME" -v
|
||||||
echo "Using APM version:"
|
echo "Using APM version:"
|
||||||
"$APM_SCRIPT_PATH" -v
|
"$APM_SCRIPT_NAME" -v
|
||||||
|
|
||||||
echo "Downloading package dependencies..."
|
echo "Downloading package dependencies..."
|
||||||
"$APM_SCRIPT_PATH" clean
|
"$APM_SCRIPT_NAME" clean
|
||||||
"$APM_SCRIPT_PATH" install
|
"$APM_SCRIPT_NAME" install
|
||||||
|
|
||||||
TEST_PACKAGES="${APM_TEST_PACKAGES:=none}"
|
echo "Installing atom package dependencies..."
|
||||||
|
"$APM_SCRIPT_NAME" install --packages-file atom-packages.txt
|
||||||
if [ "$TEST_PACKAGES" != "none" ]; then
|
|
||||||
echo "Installing atom package dependencies..."
|
|
||||||
for pack in $TEST_PACKAGES ; do
|
|
||||||
"$APM_SCRIPT_PATH" install $pack
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -f ./node_modules/.bin/coffeelint ]; then
|
if [ -f ./node_modules/.bin/coffeelint ]; then
|
||||||
if [ -d ./src ]; then
|
if [ -d ./src ]; then
|
||||||
|
@ -100,7 +58,7 @@ fi
|
||||||
|
|
||||||
if [ -d ./spec ]; then
|
if [ -d ./spec ]; then
|
||||||
echo "Running specs..."
|
echo "Running specs..."
|
||||||
"$ATOM_SCRIPT_PATH" --test spec
|
"$ATOM_SCRIPT_NAME" --test spec
|
||||||
else
|
else
|
||||||
echo "Missing spec folder! Please consider adding a test suite in `./spec`"
|
echo "Missing spec folder! Please consider adding a test suite in `./spec`"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"require": {
|
||||||
|
"friendsofphp/php-cs-fixer": ">0"
|
||||||
|
}
|
||||||
|
}
|
2657
docs/options.md
2657
docs/options.md
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,12 @@
|
||||||
|
class Test extends React.Component<Foo> {
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<div className="class">
|
||||||
|
<h2 className="anotherClass">
|
||||||
|
{this.foo.bar}
|
||||||
|
</h2>
|
||||||
|
{this.foo.bar.children}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
class Test extends React.Component<Foo> {
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<div className="class">
|
||||||
|
<h2 className= "anotherClass">
|
||||||
|
{this.foo.bar}
|
||||||
|
</h2>
|
||||||
|
{this.foo.bar.children}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
42
package.json
42
package.json
|
@ -157,48 +157,49 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"align-yaml": "^0.1.8",
|
"align-yaml": "^0.1.8",
|
||||||
"async": "^2.4.1",
|
"async": "^2.6.0",
|
||||||
"atom-message-panel": "^1.3.0",
|
"atom-message-panel": "^1.3.0",
|
||||||
"atom-space-pen-views": "^2.2.0",
|
"atom-space-pen-views": "^2.2.0",
|
||||||
"bluebird": "^3.5.0",
|
"bluebird": "^3.5.1",
|
||||||
"coffee-fmt": "^0.12.0",
|
"coffee-fmt": "^0.12.0",
|
||||||
"coffee-formatter": "^0.1.2",
|
"coffee-formatter": "^0.1.2",
|
||||||
"coffee-script": "^1.12.6",
|
"coffee-script": "^1.12.6",
|
||||||
"csscomb": "^4.2.0",
|
"csscomb": "^4.2.0",
|
||||||
"diff": "^3.2.0",
|
"diff": "^3.4.0",
|
||||||
"editorconfig": "^0.13.2",
|
"editorconfig": "^0.15.0",
|
||||||
"eslint": "^4.0.0",
|
"eslint": "^4.16.0",
|
||||||
"event-kit": "^2.3.0",
|
"event-kit": "^2.4.0",
|
||||||
"expand-home-dir": "0.0.3",
|
"expand-home-dir": "0.0.3",
|
||||||
"extend": "^3.0.1",
|
"extend": "^3.0.1",
|
||||||
"gherkin": "^2.12.2",
|
"gherkin": "^2.12.2",
|
||||||
"handlebars": "^4.0.10",
|
"handlebars": "^4.0.11",
|
||||||
"js-beautify": "^1.6.14",
|
"js-beautify": "^1.7.5",
|
||||||
"jscs": "^3.0.7",
|
"jscs": "^3.0.7",
|
||||||
"lodash": "^4.17.4",
|
"lodash": "^4.17.4",
|
||||||
"loophole": "^1.1.0",
|
"loophole": "^1.1.0",
|
||||||
"marko-prettyprint": "^1.3.6",
|
"marko-prettyprint": "^1.4.0",
|
||||||
"nginxbeautify": "^2.0.1",
|
"nginxbeautify": "^2.0.1",
|
||||||
"node-cljfmt": "0.5.3",
|
"node-cljfmt": "0.5.3",
|
||||||
"node-dir": "0.1.17",
|
"node-dir": "0.1.17",
|
||||||
"node-uuid": "1.4.8",
|
"node-uuid": "1.4.8",
|
||||||
"open": "0.0.5",
|
"open": "0.0.5",
|
||||||
|
"prettier": "^1.10.2",
|
||||||
"prettydiff2": "^2.2.7",
|
"prettydiff2": "^2.2.7",
|
||||||
"pug-beautify": "^0.1.1",
|
"pug-beautify": "^0.1.1",
|
||||||
"remark": "6.0.1",
|
"remark": "6.0.1",
|
||||||
"season": "6.0.0",
|
"season": "^6.0.2",
|
||||||
"semver": "^5.3.0",
|
"semver": "^5.5.0",
|
||||||
"shell-env": "^0.3.0",
|
"shell-env": "^0.3.0",
|
||||||
"space-pen": "5.1.2",
|
"space-pen": "5.1.2",
|
||||||
"strip-json-comments": "^2.0.1",
|
"strip-json-comments": "^2.0.1",
|
||||||
"temp": "^0.8.3",
|
"temp": "^0.8.3",
|
||||||
"tidy-markdown": "2.0.3",
|
"tidy-markdown": "2.0.4",
|
||||||
"typescript": "2.4.1",
|
"typescript": "^2.6.2",
|
||||||
"typescript-formatter": "5.2.0",
|
"typescript-formatter": "^7.0.0",
|
||||||
"underscore-plus": "^1.6.6",
|
"underscore-plus": "^1.6.6",
|
||||||
"universal-analytics": "0.4.13",
|
"universal-analytics": "^0.4.16",
|
||||||
"which": "1.2.14",
|
"which": "^1.3.0",
|
||||||
"winston": "2.3.1",
|
"winston": "^2.4.0",
|
||||||
"yaml-front-matter": "3.4.0"
|
"yaml-front-matter": "3.4.0"
|
||||||
},
|
},
|
||||||
"activationHooks": [
|
"activationHooks": [
|
||||||
|
@ -277,7 +278,8 @@
|
||||||
"atom-beautify:beautify-language-xml",
|
"atom-beautify:beautify-language-xml",
|
||||||
"atom-beautify:beautify-language-xtemplate",
|
"atom-beautify:beautify-language-xtemplate",
|
||||||
"atom-beautify:beautify-language-yaml",
|
"atom-beautify:beautify-language-yaml",
|
||||||
"atom-beautify:beautify-language-terraform"
|
"atom-beautify:beautify-language-terraform",
|
||||||
|
"atom-beautify:beautify-language-tsx"
|
||||||
],
|
],
|
||||||
".tree-view .file .name": [
|
".tree-view .file .name": [
|
||||||
"atom-beautify:beautify-file"
|
"atom-beautify:beautify-file"
|
||||||
|
@ -412,7 +414,9 @@
|
||||||
"align-yaml",
|
"align-yaml",
|
||||||
"goimports",
|
"goimports",
|
||||||
"terraform",
|
"terraform",
|
||||||
"terraformfmt"
|
"terraformfmt",
|
||||||
|
"tsx",
|
||||||
|
"prettier"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"coffeelint": "1.16.0"
|
"coffeelint": "1.16.0"
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<packages>
|
||||||
|
<package id="atom" />
|
||||||
|
<package id="emacs" />
|
||||||
|
<package id="terraform" />
|
||||||
|
<package id="composer" />
|
||||||
|
<!--package id="uncrustify" /-->
|
||||||
|
</packages>
|
||||||
|
</xml>
|
|
@ -0,0 +1,4 @@
|
||||||
|
autopep8
|
||||||
|
isort
|
||||||
|
sqlparse
|
||||||
|
beautysh
|
|
@ -54,6 +54,7 @@ describe "BeautifyLanguages", ->
|
||||||
dependentPackages = [
|
dependentPackages = [
|
||||||
'autocomplete-plus'
|
'autocomplete-plus'
|
||||||
'fuse'
|
'fuse'
|
||||||
|
'react'
|
||||||
# 'linter'
|
# 'linter'
|
||||||
# 'atom-typescript' # it logs too much...
|
# 'atom-typescript' # it logs too much...
|
||||||
]
|
]
|
||||||
|
|
|
@ -7,7 +7,7 @@ module.exports = class CoffeeFormatter extends Beautifier
|
||||||
link: "https://github.com/Glavin001/Coffee-Formatter"
|
link: "https://github.com/Glavin001/Coffee-Formatter"
|
||||||
|
|
||||||
options: {
|
options: {
|
||||||
CoffeeScript: true
|
CoffeeScript: false
|
||||||
}
|
}
|
||||||
|
|
||||||
beautify: (text, language, options) ->
|
beautify: (text, language, options) ->
|
||||||
|
|
|
@ -61,6 +61,7 @@ module.exports = class Beautifiers extends EventEmitter
|
||||||
'perltidy'
|
'perltidy'
|
||||||
'php-cs-fixer'
|
'php-cs-fixer'
|
||||||
'phpcbf'
|
'phpcbf'
|
||||||
|
'prettier'
|
||||||
'prettydiff'
|
'prettydiff'
|
||||||
'pybeautifier'
|
'pybeautifier'
|
||||||
'pug-beautify'
|
'pug-beautify'
|
||||||
|
|
|
@ -8,7 +8,24 @@ Beautifier = require('./beautifier')
|
||||||
module.exports = class OCPIndent extends Beautifier
|
module.exports = class OCPIndent extends Beautifier
|
||||||
name: "ocp-indent"
|
name: "ocp-indent"
|
||||||
link: "https://www.typerex.org/ocp-indent.html"
|
link: "https://www.typerex.org/ocp-indent.html"
|
||||||
isPreInstalled: false
|
executables: [
|
||||||
|
{
|
||||||
|
name: "ocp-indent"
|
||||||
|
cmd: "ocp-indent"
|
||||||
|
homepage: "https://www.typerex.org/ocp-indent.html"
|
||||||
|
installation: "https://www.typerex.org/ocp-indent.html#installation"
|
||||||
|
version: {
|
||||||
|
parse: (text) ->
|
||||||
|
try
|
||||||
|
text.match(/(\d+\.\d+\.\d+)/)[1]
|
||||||
|
catch
|
||||||
|
text.match(/(\d+\.\d+)/)[1] + ".0"
|
||||||
|
}
|
||||||
|
docker: {
|
||||||
|
image: "unibeautify/ocp-indent"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
options: {
|
options: {
|
||||||
OCaml: true
|
OCaml: true
|
||||||
|
|
|
@ -0,0 +1,47 @@
|
||||||
|
"use strict"
|
||||||
|
|
||||||
|
Beautifier = require('./beautifier')
|
||||||
|
prettier = require("prettier")
|
||||||
|
path = require("path")
|
||||||
|
|
||||||
|
module.exports = class Prettier extends Beautifier
|
||||||
|
name: "Prettier"
|
||||||
|
link: "https://github.com/prettier/prettier"
|
||||||
|
options: {
|
||||||
|
_:
|
||||||
|
tabWidth: "indent_size"
|
||||||
|
useTabs: ["indent_with_tabs", "indent_char", (indent_with_tabs, indent_char) ->
|
||||||
|
return (indent_with_tabs is true) or (indent_char is "\t")
|
||||||
|
]
|
||||||
|
JavaScript:
|
||||||
|
bracketSpacing: "object_curly_spacing"
|
||||||
|
TypeScript: false
|
||||||
|
CSS: false
|
||||||
|
LESS: false
|
||||||
|
SCSS: false
|
||||||
|
Vue: false
|
||||||
|
JSON: false
|
||||||
|
Markdown: false
|
||||||
|
}
|
||||||
|
|
||||||
|
beautify: (text, language, options, context) ->
|
||||||
|
return new @Promise((resolve, reject) ->
|
||||||
|
_ = require('lodash')
|
||||||
|
|
||||||
|
prettierLanguage = _.find(prettier.getSupportInfo().languages, 'name': language)
|
||||||
|
if prettierLanguage
|
||||||
|
parser = prettierLanguage.parsers[0]
|
||||||
|
else
|
||||||
|
reject(new Error("Unknown language for Prettier"))
|
||||||
|
|
||||||
|
filePath = context.filePath and path.dirname context.filePath
|
||||||
|
|
||||||
|
try
|
||||||
|
prettier.resolveConfig(filePath).then((configOptions) ->
|
||||||
|
result = prettier.format(text, configOptions or options, parser)
|
||||||
|
prettier.clearConfigCache()
|
||||||
|
resolve result
|
||||||
|
)
|
||||||
|
catch err
|
||||||
|
reject(err)
|
||||||
|
)
|
|
@ -8,21 +8,28 @@ module.exports = class PuppetFix extends Beautifier
|
||||||
# this is what displays as your Default Beautifier in Language Config
|
# this is what displays as your Default Beautifier in Language Config
|
||||||
name: "puppet-lint"
|
name: "puppet-lint"
|
||||||
link: "http://puppet-lint.com/"
|
link: "http://puppet-lint.com/"
|
||||||
isPreInstalled: false
|
|
||||||
|
|
||||||
options: {
|
options: {
|
||||||
Puppet: true
|
Puppet: true
|
||||||
}
|
}
|
||||||
|
|
||||||
cli: (options) ->
|
executables: [
|
||||||
if not options.puppet_path?
|
{
|
||||||
return new Error("'puppet-lint' path is not set!" +
|
name: "puppet-lint"
|
||||||
" Please set this in the Atom Beautify package settings.")
|
cmd: "puppet-lint"
|
||||||
else
|
homepage: "http://puppet-lint.com/"
|
||||||
return options.puppet_path
|
installation: "http://puppet-lint.com/"
|
||||||
|
version: {
|
||||||
|
parse: (text) -> text.match(/puppet-lint (\d+\.\d+\.\d+)/)[1]
|
||||||
|
}
|
||||||
|
docker: {
|
||||||
|
image: "unibeautify/puppet-lint"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
beautify: (text, language, options) ->
|
beautify: (text, language, options) ->
|
||||||
@run("puppet-lint", [
|
@exe("puppet-lint").run([
|
||||||
'--fix'
|
'--fix'
|
||||||
tempFile = @tempFile("input", text)
|
tempFile = @tempFile("input", text)
|
||||||
], {
|
], {
|
||||||
|
|
|
@ -5,14 +5,21 @@ module.exports = class TypeScriptFormatter extends Beautifier
|
||||||
name: "TypeScript Formatter"
|
name: "TypeScript Formatter"
|
||||||
link: "https://github.com/vvakame/typescript-formatter"
|
link: "https://github.com/vvakame/typescript-formatter"
|
||||||
options: {
|
options: {
|
||||||
TypeScript: true
|
TypeScript:
|
||||||
|
indent_with_tabs: true
|
||||||
|
tab_width: true
|
||||||
|
indent_size: true
|
||||||
|
TSX:
|
||||||
|
indent_with_tabs: true
|
||||||
|
tab_width: true
|
||||||
|
indent_size: true
|
||||||
}
|
}
|
||||||
|
|
||||||
beautify: (text, language, options) ->
|
beautify: (text, language, options) ->
|
||||||
return new @Promise((resolve, reject) =>
|
return new @Promise((resolve, reject) =>
|
||||||
|
|
||||||
try
|
try
|
||||||
format = require("typescript-formatter/lib/formatter").default
|
format = require("typescript-formatter/lib/formatter").format
|
||||||
formatterUtils = require("typescript-formatter/lib/utils")
|
formatterUtils = require("typescript-formatter/lib/utils")
|
||||||
# @verbose('format', format, formatterUtils)
|
# @verbose('format', format, formatterUtils)
|
||||||
|
|
||||||
|
@ -25,8 +32,13 @@ module.exports = class TypeScriptFormatter extends Beautifier
|
||||||
opts.indentSize = options.indent_size
|
opts.indentSize = options.indent_size
|
||||||
opts.indentStyle = 'space'
|
opts.indentStyle = 'space'
|
||||||
|
|
||||||
|
if language is "TSX"
|
||||||
|
fileName = 'test.tsx'
|
||||||
|
else
|
||||||
|
fileName = ''
|
||||||
|
|
||||||
@verbose('typescript', text, opts)
|
@verbose('typescript', text, opts)
|
||||||
result = format('', text, opts)
|
result = format(fileName, text, opts)
|
||||||
@verbose(result)
|
@verbose(result)
|
||||||
resolve result
|
resolve result
|
||||||
catch e
|
catch e
|
||||||
|
|
|
@ -68,6 +68,7 @@ module.exports = class Languages
|
||||||
"svg"
|
"svg"
|
||||||
"swig"
|
"swig"
|
||||||
"tss"
|
"tss"
|
||||||
|
"tsx"
|
||||||
"twig"
|
"twig"
|
||||||
"typescript"
|
"typescript"
|
||||||
"ux_markup"
|
"ux_markup"
|
||||||
|
|
|
@ -108,5 +108,9 @@ module.exports = {
|
||||||
default: "System Default"
|
default: "System Default"
|
||||||
enum: ["CRLF","LF","System Default"]
|
enum: ["CRLF","LF","System Default"]
|
||||||
description: "Override EOL from line-ending-selector"
|
description: "Override EOL from line-ending-selector"
|
||||||
|
object_curly_spacing:
|
||||||
|
type: 'boolean'
|
||||||
|
default: false
|
||||||
|
description: "Insert spaces between brackets in object literals"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
module.exports = {
|
||||||
|
|
||||||
|
name: "TSX"
|
||||||
|
namespace: "tsx"
|
||||||
|
fallback: ['js']
|
||||||
|
|
||||||
|
###
|
||||||
|
Supported Grammars
|
||||||
|
###
|
||||||
|
grammars: [
|
||||||
|
"TypeScriptReact"
|
||||||
|
]
|
||||||
|
|
||||||
|
###
|
||||||
|
Supported extensions
|
||||||
|
###
|
||||||
|
extensions: [
|
||||||
|
"tsx"
|
||||||
|
]
|
||||||
|
|
||||||
|
}
|
|
@ -18,4 +18,6 @@ module.exports = {
|
||||||
"ts"
|
"ts"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
defaultBeautifier: "TypeScript Formatter"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
721
src/options.json
721
src/options.json
|
@ -350,10 +350,9 @@
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"default": null,
|
"default": null,
|
||||||
"minimum": 0,
|
"minimum": 0,
|
||||||
"description": "Indentation size/length (Supported by Coffee Formatter, coffee-fmt)",
|
"description": "Indentation size/length (Supported by coffee-fmt)",
|
||||||
"title": "Indent size",
|
"title": "Indent size",
|
||||||
"beautifiers": [
|
"beautifiers": [
|
||||||
"Coffee Formatter",
|
|
||||||
"coffee-fmt"
|
"coffee-fmt"
|
||||||
],
|
],
|
||||||
"key": "indent_size",
|
"key": "indent_size",
|
||||||
|
@ -365,10 +364,9 @@
|
||||||
"indent_char": {
|
"indent_char": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"default": null,
|
"default": null,
|
||||||
"description": "Indentation character (Supported by Coffee Formatter, coffee-fmt)",
|
"description": "Indentation character (Supported by coffee-fmt)",
|
||||||
"title": "Indent char",
|
"title": "Indent char",
|
||||||
"beautifiers": [
|
"beautifiers": [
|
||||||
"Coffee Formatter",
|
|
||||||
"coffee-fmt"
|
"coffee-fmt"
|
||||||
],
|
],
|
||||||
"key": "indent_char",
|
"key": "indent_char",
|
||||||
|
@ -377,27 +375,12 @@
|
||||||
"namespace": "js"
|
"namespace": "js"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"indent_level": {
|
|
||||||
"type": "integer",
|
|
||||||
"default": 0,
|
|
||||||
"description": "Initial indentation level (Supported by Coffee Formatter)",
|
|
||||||
"title": "Indent level",
|
|
||||||
"beautifiers": [
|
|
||||||
"Coffee Formatter"
|
|
||||||
],
|
|
||||||
"key": "indent_level",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"indent_with_tabs": {
|
"indent_with_tabs": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": null,
|
"default": null,
|
||||||
"description": "Indentation uses tabs, overrides `Indent Size` and `Indent Char` (Supported by Coffee Formatter, coffee-fmt)",
|
"description": "Indentation uses tabs, overrides `Indent Size` and `Indent Char` (Supported by coffee-fmt)",
|
||||||
"title": "Indent with tabs",
|
"title": "Indent with tabs",
|
||||||
"beautifiers": [
|
"beautifiers": [
|
||||||
"Coffee Formatter",
|
|
||||||
"coffee-fmt"
|
"coffee-fmt"
|
||||||
],
|
],
|
||||||
"key": "indent_with_tabs",
|
"key": "indent_with_tabs",
|
||||||
|
@ -406,242 +389,6 @@
|
||||||
"namespace": "js"
|
"namespace": "js"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"preserve_newlines": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": true,
|
|
||||||
"description": "Preserve line-breaks (Supported by Coffee Formatter)",
|
|
||||||
"title": "Preserve newlines",
|
|
||||||
"beautifiers": [
|
|
||||||
"Coffee Formatter"
|
|
||||||
],
|
|
||||||
"key": "preserve_newlines",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"max_preserve_newlines": {
|
|
||||||
"type": "integer",
|
|
||||||
"default": 10,
|
|
||||||
"description": "Number of line-breaks to be preserved in one chunk (Supported by Coffee Formatter)",
|
|
||||||
"title": "Max preserve newlines",
|
|
||||||
"beautifiers": [
|
|
||||||
"Coffee Formatter"
|
|
||||||
],
|
|
||||||
"key": "max_preserve_newlines",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"space_in_paren": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": "Add padding spaces within paren, ie. f( a, b ) (Supported by Coffee Formatter)",
|
|
||||||
"title": "Space in paren",
|
|
||||||
"beautifiers": [
|
|
||||||
"Coffee Formatter"
|
|
||||||
],
|
|
||||||
"key": "space_in_paren",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"jslint_happy": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": "Enable jslint-stricter mode (Supported by Coffee Formatter)",
|
|
||||||
"title": "Jslint happy",
|
|
||||||
"beautifiers": [
|
|
||||||
"Coffee Formatter"
|
|
||||||
],
|
|
||||||
"key": "jslint_happy",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"space_after_anon_function": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": "Add a space before an anonymous function's parens, ie. function () (Supported by Coffee Formatter)",
|
|
||||||
"title": "Space after anon function",
|
|
||||||
"beautifiers": [
|
|
||||||
"Coffee Formatter"
|
|
||||||
],
|
|
||||||
"key": "space_after_anon_function",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"brace_style": {
|
|
||||||
"type": "string",
|
|
||||||
"default": "collapse",
|
|
||||||
"enum": [
|
|
||||||
"collapse",
|
|
||||||
"collapse-preserve-inline",
|
|
||||||
"expand",
|
|
||||||
"end-expand",
|
|
||||||
"none"
|
|
||||||
],
|
|
||||||
"description": "[collapse|collapse-preserve-inline|expand|end-expand|none] (Supported by Coffee Formatter)",
|
|
||||||
"title": "Brace style",
|
|
||||||
"beautifiers": [
|
|
||||||
"Coffee Formatter"
|
|
||||||
],
|
|
||||||
"key": "brace_style",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"break_chained_methods": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": "Break chained method calls across subsequent lines (Supported by Coffee Formatter)",
|
|
||||||
"title": "Break chained methods",
|
|
||||||
"beautifiers": [
|
|
||||||
"Coffee Formatter"
|
|
||||||
],
|
|
||||||
"key": "break_chained_methods",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"keep_array_indentation": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": "Preserve array indentation (Supported by Coffee Formatter)",
|
|
||||||
"title": "Keep array indentation",
|
|
||||||
"beautifiers": [
|
|
||||||
"Coffee Formatter"
|
|
||||||
],
|
|
||||||
"key": "keep_array_indentation",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"keep_function_indentation": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": " (Supported by Coffee Formatter)",
|
|
||||||
"title": "Keep function indentation",
|
|
||||||
"beautifiers": [
|
|
||||||
"Coffee Formatter"
|
|
||||||
],
|
|
||||||
"key": "keep_function_indentation",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"space_before_conditional": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": true,
|
|
||||||
"description": " (Supported by Coffee Formatter)",
|
|
||||||
"title": "Space before conditional",
|
|
||||||
"beautifiers": [
|
|
||||||
"Coffee Formatter"
|
|
||||||
],
|
|
||||||
"key": "space_before_conditional",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"eval_code": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": " (Supported by Coffee Formatter)",
|
|
||||||
"title": "Eval code",
|
|
||||||
"beautifiers": [
|
|
||||||
"Coffee Formatter"
|
|
||||||
],
|
|
||||||
"key": "eval_code",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"unescape_strings": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": "Decode printable characters encoded in xNN notation (Supported by Coffee Formatter)",
|
|
||||||
"title": "Unescape strings",
|
|
||||||
"beautifiers": [
|
|
||||||
"Coffee Formatter"
|
|
||||||
],
|
|
||||||
"key": "unescape_strings",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"wrap_line_length": {
|
|
||||||
"type": "integer",
|
|
||||||
"default": 0,
|
|
||||||
"description": "Wrap lines at next opportunity after N characters (Supported by Coffee Formatter)",
|
|
||||||
"title": "Wrap line length",
|
|
||||||
"beautifiers": [
|
|
||||||
"Coffee Formatter"
|
|
||||||
],
|
|
||||||
"key": "wrap_line_length",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"end_with_newline": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": "End output with newline (Supported by Coffee Formatter)",
|
|
||||||
"title": "End with newline",
|
|
||||||
"beautifiers": [
|
|
||||||
"Coffee Formatter"
|
|
||||||
],
|
|
||||||
"key": "end_with_newline",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"end_with_comma": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": "If a terminating comma should be inserted into arrays, object literals, and destructured objects. (Supported by Coffee Formatter)",
|
|
||||||
"title": "End with comma",
|
|
||||||
"beautifiers": [
|
|
||||||
"Coffee Formatter"
|
|
||||||
],
|
|
||||||
"key": "end_with_comma",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"end_of_line": {
|
|
||||||
"type": "string",
|
|
||||||
"default": "System Default",
|
|
||||||
"enum": [
|
|
||||||
"CRLF",
|
|
||||||
"LF",
|
|
||||||
"System Default"
|
|
||||||
],
|
|
||||||
"description": "Override EOL from line-ending-selector (Supported by Coffee Formatter)",
|
|
||||||
"title": "End of line",
|
|
||||||
"beautifiers": [
|
|
||||||
"Coffee Formatter"
|
|
||||||
],
|
|
||||||
"key": "end_of_line",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"disabled": {
|
"disabled": {
|
||||||
"title": "Disable Beautifying Language",
|
"title": "Disable Beautifying Language",
|
||||||
"order": -3,
|
"order": -3,
|
||||||
|
@ -893,6 +640,7 @@
|
||||||
"beautifiers": [
|
"beautifiers": [
|
||||||
"CSScomb",
|
"CSScomb",
|
||||||
"JS Beautify",
|
"JS Beautify",
|
||||||
|
"Prettier",
|
||||||
"Pretty Diff",
|
"Pretty Diff",
|
||||||
"SassConvert"
|
"SassConvert"
|
||||||
],
|
],
|
||||||
|
@ -1132,6 +880,7 @@
|
||||||
"enum": [
|
"enum": [
|
||||||
"CSScomb",
|
"CSScomb",
|
||||||
"JS Beautify",
|
"JS Beautify",
|
||||||
|
"Prettier",
|
||||||
"Pretty Diff",
|
"Pretty Diff",
|
||||||
"SassConvert"
|
"SassConvert"
|
||||||
]
|
]
|
||||||
|
@ -1563,6 +1312,20 @@
|
||||||
"namespace": "js"
|
"namespace": "js"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"object_curly_spacing": {
|
||||||
|
"type": "boolean",
|
||||||
|
"default": false,
|
||||||
|
"description": "Insert spaces between brackets in object literals (Supported by JS Beautify)",
|
||||||
|
"title": "Object curly spacing",
|
||||||
|
"beautifiers": [
|
||||||
|
"JS Beautify"
|
||||||
|
],
|
||||||
|
"key": "object_curly_spacing",
|
||||||
|
"language": {
|
||||||
|
"name": "JavaScript",
|
||||||
|
"namespace": "js"
|
||||||
|
}
|
||||||
|
},
|
||||||
"indent_inner_html": {
|
"indent_inner_html": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": false,
|
"default": false,
|
||||||
|
@ -3139,6 +2902,7 @@
|
||||||
"JS Beautify",
|
"JS Beautify",
|
||||||
"JSCS Fixer",
|
"JSCS Fixer",
|
||||||
"ESLint Fixer",
|
"ESLint Fixer",
|
||||||
|
"Prettier",
|
||||||
"Pretty Diff"
|
"Pretty Diff"
|
||||||
],
|
],
|
||||||
"grammars": [
|
"grammars": [
|
||||||
|
@ -3152,10 +2916,11 @@
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"default": null,
|
"default": null,
|
||||||
"minimum": 0,
|
"minimum": 0,
|
||||||
"description": "Indentation size/length (Supported by JS Beautify, Pretty Diff)",
|
"description": "Indentation size/length (Supported by JS Beautify, Prettier, Pretty Diff)",
|
||||||
"title": "Indent size",
|
"title": "Indent size",
|
||||||
"beautifiers": [
|
"beautifiers": [
|
||||||
"JS Beautify",
|
"JS Beautify",
|
||||||
|
"Prettier",
|
||||||
"Pretty Diff"
|
"Pretty Diff"
|
||||||
],
|
],
|
||||||
"key": "indent_size",
|
"key": "indent_size",
|
||||||
|
@ -3167,10 +2932,11 @@
|
||||||
"indent_char": {
|
"indent_char": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"default": null,
|
"default": null,
|
||||||
"description": "Indentation character (Supported by JS Beautify, Pretty Diff)",
|
"description": "Indentation character (Supported by JS Beautify, Prettier, Pretty Diff)",
|
||||||
"title": "Indent char",
|
"title": "Indent char",
|
||||||
"beautifiers": [
|
"beautifiers": [
|
||||||
"JS Beautify",
|
"JS Beautify",
|
||||||
|
"Prettier",
|
||||||
"Pretty Diff"
|
"Pretty Diff"
|
||||||
],
|
],
|
||||||
"key": "indent_char",
|
"key": "indent_char",
|
||||||
|
@ -3196,10 +2962,11 @@
|
||||||
"indent_with_tabs": {
|
"indent_with_tabs": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": null,
|
"default": null,
|
||||||
"description": "Indentation uses tabs, overrides `Indent Size` and `Indent Char` (Supported by JS Beautify, Pretty Diff)",
|
"description": "Indentation uses tabs, overrides `Indent Size` and `Indent Char` (Supported by JS Beautify, Prettier, Pretty Diff)",
|
||||||
"title": "Indent with tabs",
|
"title": "Indent with tabs",
|
||||||
"beautifiers": [
|
"beautifiers": [
|
||||||
"JS Beautify",
|
"JS Beautify",
|
||||||
|
"Prettier",
|
||||||
"Pretty Diff"
|
"Pretty Diff"
|
||||||
],
|
],
|
||||||
"key": "indent_with_tabs",
|
"key": "indent_with_tabs",
|
||||||
|
@ -3450,6 +3217,21 @@
|
||||||
"namespace": "js"
|
"namespace": "js"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"object_curly_spacing": {
|
||||||
|
"type": "boolean",
|
||||||
|
"default": false,
|
||||||
|
"description": "Insert spaces between brackets in object literals (Supported by JS Beautify, Prettier)",
|
||||||
|
"title": "Object curly spacing",
|
||||||
|
"beautifiers": [
|
||||||
|
"JS Beautify",
|
||||||
|
"Prettier"
|
||||||
|
],
|
||||||
|
"key": "object_curly_spacing",
|
||||||
|
"language": {
|
||||||
|
"name": "JavaScript",
|
||||||
|
"namespace": "js"
|
||||||
|
}
|
||||||
|
},
|
||||||
"disabled": {
|
"disabled": {
|
||||||
"title": "Disable Beautifying Language",
|
"title": "Disable Beautifying Language",
|
||||||
"order": -3,
|
"order": -3,
|
||||||
|
@ -3467,6 +3249,7 @@
|
||||||
"JS Beautify",
|
"JS Beautify",
|
||||||
"JSCS Fixer",
|
"JSCS Fixer",
|
||||||
"ESLint Fixer",
|
"ESLint Fixer",
|
||||||
|
"Prettier",
|
||||||
"Pretty Diff"
|
"Pretty Diff"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -3486,6 +3269,7 @@
|
||||||
"collapsed": true,
|
"collapsed": true,
|
||||||
"beautifiers": [
|
"beautifiers": [
|
||||||
"JS Beautify",
|
"JS Beautify",
|
||||||
|
"Prettier",
|
||||||
"Pretty Diff"
|
"Pretty Diff"
|
||||||
],
|
],
|
||||||
"grammars": [
|
"grammars": [
|
||||||
|
@ -3797,6 +3581,20 @@
|
||||||
"namespace": "js"
|
"namespace": "js"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"object_curly_spacing": {
|
||||||
|
"type": "boolean",
|
||||||
|
"default": false,
|
||||||
|
"description": "Insert spaces between brackets in object literals (Supported by JS Beautify)",
|
||||||
|
"title": "Object curly spacing",
|
||||||
|
"beautifiers": [
|
||||||
|
"JS Beautify"
|
||||||
|
],
|
||||||
|
"key": "object_curly_spacing",
|
||||||
|
"language": {
|
||||||
|
"name": "JavaScript",
|
||||||
|
"namespace": "js"
|
||||||
|
}
|
||||||
|
},
|
||||||
"disabled": {
|
"disabled": {
|
||||||
"title": "Disable Beautifying Language",
|
"title": "Disable Beautifying Language",
|
||||||
"order": -3,
|
"order": -3,
|
||||||
|
@ -3812,6 +3610,7 @@
|
||||||
"description": "Default Beautifier to be used for JSON",
|
"description": "Default Beautifier to be used for JSON",
|
||||||
"enum": [
|
"enum": [
|
||||||
"JS Beautify",
|
"JS Beautify",
|
||||||
|
"Prettier",
|
||||||
"Pretty Diff"
|
"Pretty Diff"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -4160,6 +3959,20 @@
|
||||||
"namespace": "js"
|
"namespace": "js"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"object_curly_spacing": {
|
||||||
|
"type": "boolean",
|
||||||
|
"default": false,
|
||||||
|
"description": "Insert spaces between brackets in object literals (Supported by JS Beautify)",
|
||||||
|
"title": "Object curly spacing",
|
||||||
|
"beautifiers": [
|
||||||
|
"JS Beautify"
|
||||||
|
],
|
||||||
|
"key": "object_curly_spacing",
|
||||||
|
"language": {
|
||||||
|
"name": "JavaScript",
|
||||||
|
"namespace": "js"
|
||||||
|
}
|
||||||
|
},
|
||||||
"disabled": {
|
"disabled": {
|
||||||
"title": "Disable Beautifying Language",
|
"title": "Disable Beautifying Language",
|
||||||
"order": -3,
|
"order": -3,
|
||||||
|
@ -4350,6 +4163,7 @@
|
||||||
"collapsed": true,
|
"collapsed": true,
|
||||||
"beautifiers": [
|
"beautifiers": [
|
||||||
"CSScomb",
|
"CSScomb",
|
||||||
|
"Prettier",
|
||||||
"Pretty Diff"
|
"Pretty Diff"
|
||||||
],
|
],
|
||||||
"grammars": [
|
"grammars": [
|
||||||
|
@ -4554,6 +4368,7 @@
|
||||||
"description": "Default Beautifier to be used for LESS",
|
"description": "Default Beautifier to be used for LESS",
|
||||||
"enum": [
|
"enum": [
|
||||||
"CSScomb",
|
"CSScomb",
|
||||||
|
"Prettier",
|
||||||
"Pretty Diff"
|
"Pretty Diff"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -4633,6 +4448,7 @@
|
||||||
"description": "Options for language Markdown",
|
"description": "Options for language Markdown",
|
||||||
"collapsed": true,
|
"collapsed": true,
|
||||||
"beautifiers": [
|
"beautifiers": [
|
||||||
|
"Prettier",
|
||||||
"Remark",
|
"Remark",
|
||||||
"Tidy Markdown"
|
"Tidy Markdown"
|
||||||
],
|
],
|
||||||
|
@ -4700,6 +4516,7 @@
|
||||||
"default": "Tidy Markdown",
|
"default": "Tidy Markdown",
|
||||||
"description": "Default Beautifier to be used for Markdown",
|
"description": "Default Beautifier to be used for Markdown",
|
||||||
"enum": [
|
"enum": [
|
||||||
|
"Prettier",
|
||||||
"Remark",
|
"Remark",
|
||||||
"Tidy Markdown"
|
"Tidy Markdown"
|
||||||
]
|
]
|
||||||
|
@ -6566,6 +6383,7 @@
|
||||||
"collapsed": true,
|
"collapsed": true,
|
||||||
"beautifiers": [
|
"beautifiers": [
|
||||||
"CSScomb",
|
"CSScomb",
|
||||||
|
"Prettier",
|
||||||
"Pretty Diff",
|
"Pretty Diff",
|
||||||
"SassConvert"
|
"SassConvert"
|
||||||
],
|
],
|
||||||
|
@ -6771,6 +6589,7 @@
|
||||||
"description": "Default Beautifier to be used for SCSS",
|
"description": "Default Beautifier to be used for SCSS",
|
||||||
"enum": [
|
"enum": [
|
||||||
"CSScomb",
|
"CSScomb",
|
||||||
|
"Prettier",
|
||||||
"Pretty Diff",
|
"Pretty Diff",
|
||||||
"SassConvert"
|
"SassConvert"
|
||||||
]
|
]
|
||||||
|
@ -7365,6 +7184,76 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"tsx": {
|
||||||
|
"title": "TSX",
|
||||||
|
"type": "object",
|
||||||
|
"description": "Options for language TSX",
|
||||||
|
"collapsed": true,
|
||||||
|
"beautifiers": [
|
||||||
|
"TypeScript Formatter"
|
||||||
|
],
|
||||||
|
"grammars": [
|
||||||
|
"TypeScriptReact"
|
||||||
|
],
|
||||||
|
"extensions": [
|
||||||
|
"tsx"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"indent_size": {
|
||||||
|
"type": "integer",
|
||||||
|
"default": null,
|
||||||
|
"minimum": 0,
|
||||||
|
"description": "Indentation size/length (Supported by TypeScript Formatter)",
|
||||||
|
"title": "Indent size",
|
||||||
|
"beautifiers": [
|
||||||
|
"TypeScript Formatter"
|
||||||
|
],
|
||||||
|
"key": "indent_size",
|
||||||
|
"language": {
|
||||||
|
"name": "JavaScript",
|
||||||
|
"namespace": "js"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"indent_with_tabs": {
|
||||||
|
"type": "boolean",
|
||||||
|
"default": null,
|
||||||
|
"description": "Indentation uses tabs, overrides `Indent Size` and `Indent Char` (Supported by TypeScript Formatter)",
|
||||||
|
"title": "Indent with tabs",
|
||||||
|
"beautifiers": [
|
||||||
|
"TypeScript Formatter"
|
||||||
|
],
|
||||||
|
"key": "indent_with_tabs",
|
||||||
|
"language": {
|
||||||
|
"name": "JavaScript",
|
||||||
|
"namespace": "js"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"disabled": {
|
||||||
|
"title": "Disable Beautifying Language",
|
||||||
|
"order": -3,
|
||||||
|
"type": "boolean",
|
||||||
|
"default": false,
|
||||||
|
"description": "Disable TSX Beautification"
|
||||||
|
},
|
||||||
|
"default_beautifier": {
|
||||||
|
"title": "Default Beautifier",
|
||||||
|
"order": -2,
|
||||||
|
"type": "string",
|
||||||
|
"default": "TypeScript Formatter",
|
||||||
|
"description": "Default Beautifier to be used for TSX",
|
||||||
|
"enum": [
|
||||||
|
"TypeScript Formatter"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"beautify_on_save": {
|
||||||
|
"title": "Beautify On Save",
|
||||||
|
"order": -1,
|
||||||
|
"type": "boolean",
|
||||||
|
"default": false,
|
||||||
|
"description": "Automatically beautify TSX files on save"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"twig": {
|
"twig": {
|
||||||
"title": "Twig",
|
"title": "Twig",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
|
@ -7539,6 +7428,7 @@
|
||||||
"description": "Options for language TypeScript",
|
"description": "Options for language TypeScript",
|
||||||
"collapsed": true,
|
"collapsed": true,
|
||||||
"beautifiers": [
|
"beautifiers": [
|
||||||
|
"Prettier",
|
||||||
"TypeScript Formatter"
|
"TypeScript Formatter"
|
||||||
],
|
],
|
||||||
"grammars": [
|
"grammars": [
|
||||||
|
@ -7563,34 +7453,6 @@
|
||||||
"namespace": "js"
|
"namespace": "js"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"indent_char": {
|
|
||||||
"type": "string",
|
|
||||||
"default": null,
|
|
||||||
"description": "Indentation character (Supported by TypeScript Formatter)",
|
|
||||||
"title": "Indent char",
|
|
||||||
"beautifiers": [
|
|
||||||
"TypeScript Formatter"
|
|
||||||
],
|
|
||||||
"key": "indent_char",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"indent_level": {
|
|
||||||
"type": "integer",
|
|
||||||
"default": 0,
|
|
||||||
"description": "Initial indentation level (Supported by TypeScript Formatter)",
|
|
||||||
"title": "Indent level",
|
|
||||||
"beautifiers": [
|
|
||||||
"TypeScript Formatter"
|
|
||||||
],
|
|
||||||
"key": "indent_level",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"indent_with_tabs": {
|
"indent_with_tabs": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": null,
|
"default": null,
|
||||||
|
@ -7605,242 +7467,6 @@
|
||||||
"namespace": "js"
|
"namespace": "js"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"preserve_newlines": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": true,
|
|
||||||
"description": "Preserve line-breaks (Supported by TypeScript Formatter)",
|
|
||||||
"title": "Preserve newlines",
|
|
||||||
"beautifiers": [
|
|
||||||
"TypeScript Formatter"
|
|
||||||
],
|
|
||||||
"key": "preserve_newlines",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"max_preserve_newlines": {
|
|
||||||
"type": "integer",
|
|
||||||
"default": 10,
|
|
||||||
"description": "Number of line-breaks to be preserved in one chunk (Supported by TypeScript Formatter)",
|
|
||||||
"title": "Max preserve newlines",
|
|
||||||
"beautifiers": [
|
|
||||||
"TypeScript Formatter"
|
|
||||||
],
|
|
||||||
"key": "max_preserve_newlines",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"space_in_paren": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": "Add padding spaces within paren, ie. f( a, b ) (Supported by TypeScript Formatter)",
|
|
||||||
"title": "Space in paren",
|
|
||||||
"beautifiers": [
|
|
||||||
"TypeScript Formatter"
|
|
||||||
],
|
|
||||||
"key": "space_in_paren",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"jslint_happy": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": "Enable jslint-stricter mode (Supported by TypeScript Formatter)",
|
|
||||||
"title": "Jslint happy",
|
|
||||||
"beautifiers": [
|
|
||||||
"TypeScript Formatter"
|
|
||||||
],
|
|
||||||
"key": "jslint_happy",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"space_after_anon_function": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": "Add a space before an anonymous function's parens, ie. function () (Supported by TypeScript Formatter)",
|
|
||||||
"title": "Space after anon function",
|
|
||||||
"beautifiers": [
|
|
||||||
"TypeScript Formatter"
|
|
||||||
],
|
|
||||||
"key": "space_after_anon_function",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"brace_style": {
|
|
||||||
"type": "string",
|
|
||||||
"default": "collapse",
|
|
||||||
"enum": [
|
|
||||||
"collapse",
|
|
||||||
"collapse-preserve-inline",
|
|
||||||
"expand",
|
|
||||||
"end-expand",
|
|
||||||
"none"
|
|
||||||
],
|
|
||||||
"description": "[collapse|collapse-preserve-inline|expand|end-expand|none] (Supported by TypeScript Formatter)",
|
|
||||||
"title": "Brace style",
|
|
||||||
"beautifiers": [
|
|
||||||
"TypeScript Formatter"
|
|
||||||
],
|
|
||||||
"key": "brace_style",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"break_chained_methods": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": "Break chained method calls across subsequent lines (Supported by TypeScript Formatter)",
|
|
||||||
"title": "Break chained methods",
|
|
||||||
"beautifiers": [
|
|
||||||
"TypeScript Formatter"
|
|
||||||
],
|
|
||||||
"key": "break_chained_methods",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"keep_array_indentation": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": "Preserve array indentation (Supported by TypeScript Formatter)",
|
|
||||||
"title": "Keep array indentation",
|
|
||||||
"beautifiers": [
|
|
||||||
"TypeScript Formatter"
|
|
||||||
],
|
|
||||||
"key": "keep_array_indentation",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"keep_function_indentation": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": " (Supported by TypeScript Formatter)",
|
|
||||||
"title": "Keep function indentation",
|
|
||||||
"beautifiers": [
|
|
||||||
"TypeScript Formatter"
|
|
||||||
],
|
|
||||||
"key": "keep_function_indentation",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"space_before_conditional": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": true,
|
|
||||||
"description": " (Supported by TypeScript Formatter)",
|
|
||||||
"title": "Space before conditional",
|
|
||||||
"beautifiers": [
|
|
||||||
"TypeScript Formatter"
|
|
||||||
],
|
|
||||||
"key": "space_before_conditional",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"eval_code": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": " (Supported by TypeScript Formatter)",
|
|
||||||
"title": "Eval code",
|
|
||||||
"beautifiers": [
|
|
||||||
"TypeScript Formatter"
|
|
||||||
],
|
|
||||||
"key": "eval_code",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"unescape_strings": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": "Decode printable characters encoded in xNN notation (Supported by TypeScript Formatter)",
|
|
||||||
"title": "Unescape strings",
|
|
||||||
"beautifiers": [
|
|
||||||
"TypeScript Formatter"
|
|
||||||
],
|
|
||||||
"key": "unescape_strings",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"wrap_line_length": {
|
|
||||||
"type": "integer",
|
|
||||||
"default": 0,
|
|
||||||
"description": "Wrap lines at next opportunity after N characters (Supported by TypeScript Formatter)",
|
|
||||||
"title": "Wrap line length",
|
|
||||||
"beautifiers": [
|
|
||||||
"TypeScript Formatter"
|
|
||||||
],
|
|
||||||
"key": "wrap_line_length",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"end_with_newline": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": "End output with newline (Supported by TypeScript Formatter)",
|
|
||||||
"title": "End with newline",
|
|
||||||
"beautifiers": [
|
|
||||||
"TypeScript Formatter"
|
|
||||||
],
|
|
||||||
"key": "end_with_newline",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"end_with_comma": {
|
|
||||||
"type": "boolean",
|
|
||||||
"default": false,
|
|
||||||
"description": "If a terminating comma should be inserted into arrays, object literals, and destructured objects. (Supported by TypeScript Formatter)",
|
|
||||||
"title": "End with comma",
|
|
||||||
"beautifiers": [
|
|
||||||
"TypeScript Formatter"
|
|
||||||
],
|
|
||||||
"key": "end_with_comma",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"end_of_line": {
|
|
||||||
"type": "string",
|
|
||||||
"default": "System Default",
|
|
||||||
"enum": [
|
|
||||||
"CRLF",
|
|
||||||
"LF",
|
|
||||||
"System Default"
|
|
||||||
],
|
|
||||||
"description": "Override EOL from line-ending-selector (Supported by TypeScript Formatter)",
|
|
||||||
"title": "End of line",
|
|
||||||
"beautifiers": [
|
|
||||||
"TypeScript Formatter"
|
|
||||||
],
|
|
||||||
"key": "end_of_line",
|
|
||||||
"language": {
|
|
||||||
"name": "JavaScript",
|
|
||||||
"namespace": "js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"disabled": {
|
"disabled": {
|
||||||
"title": "Disable Beautifying Language",
|
"title": "Disable Beautifying Language",
|
||||||
"order": -3,
|
"order": -3,
|
||||||
|
@ -7855,6 +7481,7 @@
|
||||||
"default": "TypeScript Formatter",
|
"default": "TypeScript Formatter",
|
||||||
"description": "Default Beautifier to be used for TypeScript",
|
"description": "Default Beautifier to be used for TypeScript",
|
||||||
"enum": [
|
"enum": [
|
||||||
|
"Prettier",
|
||||||
"TypeScript Formatter"
|
"TypeScript Formatter"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -8027,6 +7654,7 @@
|
||||||
"description": "Options for language Vue",
|
"description": "Options for language Vue",
|
||||||
"collapsed": true,
|
"collapsed": true,
|
||||||
"beautifiers": [
|
"beautifiers": [
|
||||||
|
"Prettier",
|
||||||
"Vue Beautifier"
|
"Vue Beautifier"
|
||||||
],
|
],
|
||||||
"grammars": [
|
"grammars": [
|
||||||
|
@ -8329,6 +7957,20 @@
|
||||||
"namespace": "js"
|
"namespace": "js"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"object_curly_spacing": {
|
||||||
|
"type": "boolean",
|
||||||
|
"default": false,
|
||||||
|
"description": "Insert spaces between brackets in object literals (Supported by Vue Beautifier)",
|
||||||
|
"title": "Object curly spacing",
|
||||||
|
"beautifiers": [
|
||||||
|
"Vue Beautifier"
|
||||||
|
],
|
||||||
|
"key": "object_curly_spacing",
|
||||||
|
"language": {
|
||||||
|
"name": "JavaScript",
|
||||||
|
"namespace": "js"
|
||||||
|
}
|
||||||
|
},
|
||||||
"indent_inner_html": {
|
"indent_inner_html": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": false,
|
"default": false,
|
||||||
|
@ -8518,6 +8160,7 @@
|
||||||
"default": "Vue Beautifier",
|
"default": "Vue Beautifier",
|
||||||
"description": "Default Beautifier to be used for Vue",
|
"description": "Default Beautifier to be used for Vue",
|
||||||
"enum": [
|
"enum": [
|
||||||
|
"Prettier",
|
||||||
"Vue Beautifier"
|
"Vue Beautifier"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -9320,6 +8963,22 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"ocp-indent": {
|
||||||
|
"key": "ocp-indent",
|
||||||
|
"title": "ocp-indent",
|
||||||
|
"type": "object",
|
||||||
|
"collapsed": true,
|
||||||
|
"description": "Options for ocp-indent executable.",
|
||||||
|
"properties": {
|
||||||
|
"path": {
|
||||||
|
"key": "path",
|
||||||
|
"title": "Binary/Script Path",
|
||||||
|
"type": "string",
|
||||||
|
"default": "",
|
||||||
|
"description": "Absolute path to the \"ocp-indent\" executable's binary/script."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"php": {
|
"php": {
|
||||||
"key": "php",
|
"key": "php",
|
||||||
"title": "PHP",
|
"title": "PHP",
|
||||||
|
@ -9368,6 +9027,22 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"puppet-lint": {
|
||||||
|
"key": "puppet-lint",
|
||||||
|
"title": "puppet-lint",
|
||||||
|
"type": "object",
|
||||||
|
"collapsed": true,
|
||||||
|
"description": "Options for puppet-lint executable.",
|
||||||
|
"properties": {
|
||||||
|
"path": {
|
||||||
|
"key": "path",
|
||||||
|
"title": "Binary/Script Path",
|
||||||
|
"type": "string",
|
||||||
|
"default": "",
|
||||||
|
"description": "Absolute path to the \"puppet-lint\" executable's binary/script."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"sass-convert": {
|
"sass-convert": {
|
||||||
"key": "sass-convert",
|
"key": "sass-convert",
|
||||||
"title": "SassConvert",
|
"title": "SassConvert",
|
||||||
|
|
Loading…
Reference in New Issue