diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..d90daf1 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,8 @@ +/.github export-ignore +/tests export-ignore +/.editorconfig export-ignore +/.gitattributes export-ignore +/.gitignore export-ignore +/phpcs.xml export-ignore +/phpstan.neon export-ignore +/phpunit.xml export-ignore diff --git a/.gitignore b/.gitignore index d3386f1..fd379ad 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,6 @@ composer.lock .phpunit.result.cache coverage/ .vscode/settings.json -*.sublime-workspace +*.sublime* .vscode/ -clover.xml \ No newline at end of file +clover.xml diff --git a/flight.sublime-project b/flight.sublime-project deleted file mode 100644 index 8f2848d..0000000 --- a/flight.sublime-project +++ /dev/null @@ -1,63 +0,0 @@ -{ - "folders": [ - { - "path": ".", - "name": "FlightPHP/Core", - } - ], - "settings": { - "SublimeLinter.linters.phpstan.executable": "${project_path}/vendor/bin/phpstan.bat", - "LSP": { - "LSP-intelephense": { - "settings": { - "intelephense.environment.phpVersion": "7.4.0", - "intelephense.format.braces": "psr12", - }, - }, - "formatters": { - "embedding.php": "LSP-intelephense", - "source.json.composer": "LSP-json", - "source.json.sublime": "LSP-json", - }, - "LSP-html": { - "enabled": false, - }, - "LSP-tailwindcss": { - "enabled": false, - }, - "ltex-ls": { - "enabled": false, - }, - "marksman": { - "enabled": false - }, - }, - }, - "build_systems": [ - { - "name": "Linter - HARD", - "quiet": true, - "shell_cmd": "composer lint -- --no-ansi -lmax", - }, - { - "name": "Linter - Default", - "quiet": false, - "shell_cmd": "composer lint -- --no-ansi & composer phpcs -- --no-colors", - }, - { - "name": "PHPCS", - "quiet": false, - "shell_cmd": "composer phpcs -- --no-colors" - }, - { - "name": "Format", - "quiet": true, - "shell_cmd": "composer beautify -- --no-colors" - }, - { - "name": "Test coverage", - "quiet": true, - "shell_cmd": "composer test-coverage:win -- --no-colors" - } - ], -}