Last active
July 21, 2022 15:23
-
-
Save laravel-shift/e8e55d7cafa46fc33783823bb675b711 to your computer and use it in GitHub Desktop.
Default configuration file for setting Shift preferences
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; Within this file you may set preferences for Shift. | |
| ; These may be used to customize the behavior of the | |
| ; Shift bot by disabling or guiding the automation. | |
| ; Section to set general options for all Shifts. | |
| [shift] | |
| ; Additional directories Shift should scan which are | |
| ; not included in a default project structure. | |
| additional_directories = "" | |
| ; Directories Shift should not scan which are | |
| ; included in a default project structure. | |
| excluded_directories = "" | |
| ; Section to set options for Laravel Shifts. | |
| [laravel] | |
| ; Scan for any Controllers containing actions | |
| ; outside the seven default resource methods: | |
| ; index, create, store, edit, update, | |
| ; show, destroy | |
| cruddy_controllers = true | |
| ; Scan for Laravel Facade references using the | |
| ; global alias instead of explicit import. | |
| global_facades = true | |
| ; Scan for opportunities to use the auto-injected | |
| ; Request object within Controller and Middleware | |
| ; actions instead of the Request Facade or helper | |
| ; function. | |
| leverage_request = true | |
| ; Section to set options for PHP Shifts. | |
| [php] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Opportunity is spelled wrong twice as
opporuntityon lines 65 and 76.